From 57bbd89caf922228363418cacbfa1daeb352e520 Mon Sep 17 00:00:00 2001 From: Mandeep Sandhu Date: Wed, 18 Sep 2013 17:59:36 +0530 Subject: [PATCH] Add missing 'git stash' completion options Added the following options which were missing: * save * branch --- share/completions/git.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/completions/git.fish b/share/completions/git.fish index 3532ef652..d51b03a56 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -328,6 +328,8 @@ complete -f -c git -n '__fish_git_using_command stash' -a apply -d 'Apply a sing complete -f -c git -n '__fish_git_using_command stash' -a clear -d 'Remove all stashed states' 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' # TODO other options ### config