Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'tz/complete-tag-delete-tagname'
author
Junio C Hamano
<gitster@pobox.com>
Wed, 21 Mar 2018 18:30:15 +0000
(11:30 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 21 Mar 2018 18:30:15 +0000
(11:30 -0700)
* tz/complete-tag-delete-tagname:
completion: complete tags with git tag --delete/--verify
contrib/completion/git-completion.bash
patch
|
blob
|
history
raw
(from parent 1:
f46cdf4
)
diff --git
a/contrib/completion/git-completion.bash
b/contrib/completion/git-completion.bash
index 6da95b8095d9a18694f6a3cda139fe4ba832f4ee..c7957f0a90b3ccc62f0ded999c34c963f320419b 100644
(file)
--- 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
;;