From 962a19dfab7f04552ce7919fff91e945bab53bde Mon Sep 17 00:00:00 2001 From: Mandeep Sandhu Date: Wed, 18 Sep 2013 18:09:49 +0530 Subject: [PATCH] Add missing 'git stash' completion options Fixed typo. --- share/completions/git.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/completions/git.fish b/share/completions/git.fish index d51b03a56..138b2c4a5 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -329,7 +329,7 @@ complete -f -c git -n '__fish_git_using_command stash' -a clear -d 'Remove all s complete -f -c git -n '__fish_git_using_command stash' -a drop -d 'Remove a single stashed state from the stash list' complete -f -c git -n '__fish_git_using_command stash' -a create -d 'Create a stash' complete -f -c git -n '__fish_git_using_command stash' -a save -d 'Save a new stash' -complete -f -c git -n '__fish_git_using_command stash' -a branch -d 'Create a new branhc from a stash' +complete -f -c git -n '__fish_git_using_command stash' -a branch -d 'Create a new branch from a stash' # TODO other options ### config