[PATCH] completion: add git-tag options
From: Ralf Thielow <hidden>
Date: 2016-06-15 23:03:12
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ralf Thielow <hidden>
Date: 2016-06-15 23:03:12
Subsystem:
the rest · Maintainer:
Linus Torvalds
Add completion for git-tag options including all options that are currently shown in "git tag -h". Signed-off-by: Ralf Thielow <redacted> --- contrib/completion/git-completion.bash | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 2fece98..cb32dc1 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash@@ -2548,6 +2548,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 ()
--
2.2.0.269.ge4ffef3