Browse Source

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>
maint
Ralf Thielow 10 years ago committed by Junio C Hamano
parent
commit
85ed2f3206
  1. 10
      contrib/completion/git-completion.bash

10
contrib/completion/git-completion.bash

@ -2549,6 +2549,16 @@ _git_tag () @@ -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 ()

Loading…
Cancel
Save