diff options
author | Robert Karszniewicz <avoidr@posteo.de> | 2020-10-07 00:06:37 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-07 10:54:02 -0700 |
commit | 3a35d91446223f63d19e377ea47bc91f7ad822c8 (patch) | |
tree | bb9b1ba06823590929c3768bff5fb140887cf7cf /contrib/completion | |
parent | git-completion.bash: __git_diff_common_options: add --[no-]patch (diff) | |
download | tgif-3a35d91446223f63d19e377ea47bc91f7ad822c8.tar.xz |
git-completion.bash: stash-show: complete $__git_diff_common_options
Signed-off-by: Robert Karszniewicz <avoidr@posteo.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rw-r--r-- | 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 f363554996..83bc64607b 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -3020,7 +3020,10 @@ _git_stash () list,--*) __gitcomp "--name-status --oneline --patch-with-stat" ;; - show,--*|branch,--*) + show,--*) + __gitcomp "$__git_diff_common_options" + ;; + branch,--*) ;; branch,*) if [ $cword -eq 3 ]; then |