From: SZEDER Gábor Date: Mon, 8 Jun 2009 22:57:39 +0000 (+0200) Subject: bash: add support for 'git stash pop --index' option X-Git-Tag: v1.6.4-rc0~74 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8513c54b2a4a821336d10fae6e02db70f0876abc;p=git-core%2Fgit.git bash: add support for 'git stash pop --index' option Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 80190a6b1..cc94ef44b 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1881,10 +1881,10 @@ _git_stash () save,--*) __gitcomp "--keep-index" ;; - apply,--*) + apply,--*|pop,--*) __gitcomp "--index" ;; - show,--*|drop,--*|pop,--*|branch,--*) + show,--*|drop,--*|branch,--*) COMPREPLY=() ;; show,*|apply,*|drop,*|pop,*|branch,*)