SZEDER Gábor wrote: > Signed-off-by: SZEDER Gábor <szeder@xxxxxxxxxx> > --- > contrib/completion/git-completion.bash | 5 ++++- > 1 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash > index fa899eb..480d85e 100755 > --- a/contrib/completion/git-completion.bash > +++ b/contrib/completion/git-completion.bash > @@ -1887,7 +1887,10 @@ _git_stash () > apply,--*) > __gitcomp "--index" > ;; > - show,--*|drop,--*|pop,--*|branch,--*) > + pop,--*) > + __gitcomp "--index" > + ;; > + show,--*|drop,--*|branch,--*) > COMPREPLY=() > ;; > show,*|apply,*|drop,*|pop,*|branch,*) pop takes the same options as apply, so you may want to have just one case statement for the two options. Like: apply,--*|pop,--*) -brandon -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html