Skip to content

Commit 47e1fb1

Browse files
committed
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
2 parents 65f1b1b + 705f5f1 commit 47e1fb1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

contrib/completion/git-completion.bash

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2567,6 +2567,9 @@ _git_stash ()
25672567
drop,--*)
25682568
__gitcomp "--quiet"
25692569
;;
2570+
list,--*)
2571+
__gitcomp "--name-status --oneline --patch-with-stat"
2572+
;;
25702573
show,--*|branch,--*)
25712574
;;
25722575
branch,*)

0 commit comments

Comments
 (0)