diff options
author | 2021-02-02 04:02:13 -0500 | |
---|---|---|
committer | 2021-02-02 13:26:10 -0800 | |
commit | a534cf4f4d5ac58b91112fc12478d8a32e348152 (patch) | |
tree | 57781da84ec100024787860bf4b283bf7caeb396 /contrib | |
parent | Git 2.30 (diff) | |
download | tgif-a534cf4f4d5ac58b91112fc12478d8a32e348152.tar.xz |
completion: treat "branch -D" the same way as "branch -d"
The former offers not just branches but tags as completion
candidates.
Mimic how "branch -d" limits its suggestion to branch names.
Reported-by: Paul Jolly <paul@myitcv.io>
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 463a3124da..ba950a247d 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1438,7 +1438,7 @@ _git_branch () while [ $c -lt $cword ]; do i="${words[c]}" case "$i" in - -d|--delete|-m|--move) only_local_ref="y" ;; + -d|--delete|-D|-m|--move) only_local_ref="y" ;; -r|--remotes) has_r="y" ;; esac ((c++)) |