Message ID | 20201006220637.28139-2-avoidr@posteo.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 3a35d91446223f63d19e377ea47bc91f7ad822c8 |
Headers | show |
Series | [1/2] git-completion.bash: __git_diff_common_options: add --[no-]patch | expand |
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
Signed-off-by: Robert Karszniewicz <avoidr@posteo.de> --- contrib/completion/git-completion.bash | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)