diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:27:24 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:27:24 -0800 |
commit | 2cd20dc3d445bc052f81aecfcc12f1c715a25789 (patch) | |
tree | 8ac9c39c32988f995aeb8a81e5677102bdc5ac18 /contrib/completion | |
parent | 3ab00292fc35540d5ee53b3b7e76ec4623d20b9b (diff) | |
parent | 85ed2f32064b82e541fc7dcf2b0049a0556e4960 (diff) | |
download | git-2cd20dc3d445bc052f81aecfcc12f1c715a25789.tar.gz |
Merge branch 'rt/completion-tag'
* rt/completion-tag:
completion: add git-tag options
Diffstat (limited to 'contrib/completion')
-rw-r--r-- | contrib/completion/git-completion.bash | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index b154f7066b..23988ec124 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -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 () |