Skip to content

Commit 80eb519

Browse files
pcloudsgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 78331b6 commit 80eb519

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

contrib/completion/git-completion.bash

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3002,11 +3002,7 @@ _git_tag ()
30023002

30033003
case "$cur" in
30043004
--*)
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
30103006
;;
30113007
esac
30123008
}

0 commit comments

Comments
 (0)