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:

committed by
Junio C Hamano

parent
7fa1365c54
commit
85ed2f3206
@ -2549,6 +2549,16 @@ _git_tag ()
|
|||||||
__gitcomp_nl "$(__git_refs)"
|
__gitcomp_nl "$(__git_refs)"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
case "$cur" in
|
||||||
|
--*)
|
||||||
|
__gitcomp "
|
||||||
|
--list --delete --verify --annotate --message --file
|
||||||
|
--sign --cleanup --local-user --force --column --sort
|
||||||
|
--contains --points-at
|
||||||
|
"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
}
|
}
|
||||||
|
|
||||||
_git_whatchanged ()
|
_git_whatchanged ()
|
||||||
|
Reference in New Issue
Block a user