completion: use __gitcomp_builtin in _git_tag
The new completable options are: --color --format= --ignore-case Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Nguyễn Thái Ngọc Duy committed
Feb 9, 2018 at 18:02 UTC
80eb51970d136c1db70604c4c7c8bdea8c457af0
1 file changed
+1
-5
contrib/completion/git-completion.bash
+1
-5
@@ -3002,11 +3002,7 @@ _git_tag ()
3002
3003
case "$cur" in
3004
--*)
3005
- __gitcomp "
3006
- --list --delete --verify --annotate --message --file
3007
- --sign --cleanup --local-user --force --column --sort=
3008
- --contains --no-contains --points-at --merged --no-merged --create-reflog
3009
- "
3005
+ __gitcomp_builtin tag
3006
;;
3007
esac
3008
}