From: SZEDER Gábor Date: Mon, 10 Mar 2008 15:02:24 +0000 (+0100) Subject: bash: add new 'git stash' subcommands X-Git-Tag: v1.5.5-rc0~35 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=88b302f5e2e0a6f6610912df49c473967fe59c89;p=git.git bash: add new 'git stash' subcommands Namely 'save', 'drop', 'pop' and 'create' Signed-off-by: SZEDER Gábor Signed-off-by: Shawn O. Pearce --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 438e193bd..c62b877ae 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1119,7 +1119,7 @@ _git_show () _git_stash () { - local subcommands='list show apply clear' + local subcommands='save list show apply clear drop pop create' if [ -z "$(__git_find_subcommand "$subcommands")" ]; then __gitcomp "$subcommands" fi