[PATCH] bash completion: allow git stash store options completion
From: Alexander Kuleshov <hidden>
Date: 2016-06-15 23:03:28
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Alexander Kuleshov <hidden>
Date: 2016-06-15 23:03:28
Subsystem:
the rest · Maintainer:
Linus Torvalds
This patch adds bash completion for git stash 'store' subcommand which apperead at bd514cad (stash: introduce 'git stash store', 18 Jun 2013) Signed-off-by: Alexander Kuleshov <redacted> --- contrib/completion/git-completion.bash | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index c21190d..7578266 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash@@ -2375,7 +2375,7 @@ _git_show_branch () _git_stash () { local save_opts='--keep-index --no-keep-index --quiet --patch' - local subcommands='save list show apply clear drop pop create branch' + local subcommands='save list show apply clear drop pop create branch store' local subcommand="$(__git_find_on_cmdline "$subcommands")" if [ -z "$subcommand" ]; then case "$cur" in
@@ -2402,6 +2402,9 @@ _git_stash () __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \ | sed -n -e 's/:.*//p')" ;; + store,--*) + __gitcomp "--message --quiet" + ;; *) ;; esac
--
2.3.0.rc0.239.g0ae1f56.dirty