Skip to content

Commit

Permalink
Merge branch 'rt/completion-tag'
Browse files Browse the repository at this point in the history
* rt/completion-tag:
  completion: add git-tag options
  • Loading branch information
Junio C Hamano committed Dec 22, 2014
2 parents 3ab0029 + 85ed2f3 commit 2cd20dc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand Down

0 comments on commit 2cd20dc

Please sign in to comment.