summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-03-21 18:30:15 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-03-21 18:30:15 (GMT)
commitc108a77f8f9de5b42c9661b9d4584f54f57766ec (patch)
tree74b1373e9f4298bb3050bebf8db0ece095675bbe /contrib
parentf46cdf4a3a9ba0c5a5dfe754cfbf433626bc275e (diff)
parent1775e990f793965dcfc2cf62f4efccf0f2c21e28 (diff)
downloadgit-c108a77f8f9de5b42c9661b9d4584f54f57766ec.zip
git-c108a77f8f9de5b42c9661b9d4584f54f57766ec.tar.gz
git-c108a77f8f9de5b42c9661b9d4584f54f57766ec.tar.bz2
Merge branch 'tz/complete-tag-delete-tagname'
* tz/complete-tag-delete-tagname: completion: complete tags with git tag --delete/--verify
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 6da95b8..c7957f0 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -2967,7 +2967,7 @@ _git_tag ()
while [ $c -lt $cword ]; do
i="${words[c]}"
case "$i" in
- -d|-v)
+ -d|--delete|-v|--verify)
__gitcomp_direct "$(__git_tags "" "$cur" " ")"
return
;;