bash: add support for 'git stash pop --index' option

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
SZEDER Gábor 2009-06-09 00:57:39 +02:00 committed by Junio C Hamano
parent f39d6ee2aa
commit 8513c54b2a

View File

@ -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,*)