Merge branch 'rt/completion-tag'

* rt/completion-tag:
  completion: add git-tag options
maint
Junio C Hamano 2014-12-22 12:27:24 -08:00
commit 2cd20dc3d4
1 changed files with 10 additions and 0 deletions

View File

@ -2552,6 +2552,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 ()