Browse Source

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>
maint
SZEDER Gábor 16 years ago committed by Junio C Hamano
parent
commit
8513c54b2a
  1. 4
      contrib/completion/git-completion.bash

4
contrib/completion/git-completion.bash

@ -1881,10 +1881,10 @@ _git_stash () @@ -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,*)

Loading…
Cancel
Save