summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorThomas Gummerer <t.gummerer@gmail.com>2017-05-16 19:59:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-05-17 03:15:56 (GMT)
commit3851e4483f0d62e677703297218c9bb47325806f (patch)
treee9d6e81d6031ec74750752770483b6b7ea1a63cd /contrib
parente0e7f99ea400808cd11af72425c721c8b44193ca (diff)
downloadgit-3851e4483f0d62e677703297218c9bb47325806f.zip
git-3851e4483f0d62e677703297218c9bb47325806f.tar.gz
git-3851e4483f0d62e677703297218c9bb47325806f.tar.bz2
completion: add git stash push
When introducing git stash push in f5727e26e4 ("stash: introduce push verb", 2017-02-19), I forgot to add it to the completion code. Add it now. Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/completion/git-completion.bash5
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 21016bf..5ce23a2 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -2507,7 +2507,7 @@ _git_show_branch ()
_git_stash ()
{
local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
- local subcommands='save list show apply clear drop pop create branch'
+ local subcommands='push save list show apply clear drop pop create branch'
local subcommand="$(__git_find_on_cmdline "$subcommands")"
if [ -z "$subcommand" ]; then
case "$cur" in
@@ -2522,6 +2522,9 @@ _git_stash ()
esac
else
case "$subcommand,$cur" in
+ push,--*)
+ __gitcomp "$save_opts --message"
+ ;;
save,--*)
__gitcomp "$save_opts"
;;