Browse Source

Merge branch 'sf/complete-stash-list'

The completion script (in contrib/) learned to complete a handful of
options "git stash list" command takes.

* sf/complete-stash-list:
  git-completion.bash: add completion for stash list
maint
Junio C Hamano 6 years ago
parent
commit
47e1fb12d6
  1. 3
      contrib/completion/git-completion.bash

3
contrib/completion/git-completion.bash

@ -2567,6 +2567,9 @@ _git_stash () @@ -2567,6 +2567,9 @@ _git_stash ()
drop,--*)
__gitcomp "--quiet"
;;
list,--*)
__gitcomp "--name-status --oneline --patch-with-stat"
;;
show,--*|branch,--*)
;;
branch,*)

Loading…
Cancel
Save