completion: add git-tag options

Add completion for git-tag options including
all options that are currently shown in "git tag -h".

Signed-off-by: Ralf Thielow <ralf.thielow@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ralf Thielow 2014-12-04 19:07:35 +01:00 коммит произвёл Junio C Hamano
Родитель 7fa1365c54
Коммит 85ed2f3206
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -2549,6 +2549,16 @@ _git_tag ()
__gitcomp_nl "$(__git_refs)"
;;
esac
case "$cur" in
--*)
__gitcomp "
--list --delete --verify --annotate --message --file
--sign --cleanup --local-user --force --column --sort
--contains --points-at
"
;;
esac
}
_git_whatchanged ()