We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2becdbd + 3851e44 commit 6f7f11fCopy full SHA for 6f7f11f
contrib/completion/git-completion.bash
@@ -2813,7 +2813,7 @@ _git_show_branch ()
2813
_git_stash ()
2814
{
2815
local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2816
- local subcommands='save list show apply clear drop pop create branch'
+ local subcommands='push save list show apply clear drop pop create branch'
2817
local subcommand="$(__git_find_on_cmdline "$subcommands")"
2818
if [ -z "$subcommand" ]; then
2819
case "$cur" in
@@ -2828,6 +2828,9 @@ _git_stash ()
2828
esac
2829
else
2830
case "$subcommand,$cur" in
2831
+ push,--*)
2832
+ __gitcomp "$save_opts --message"
2833
+ ;;
2834
save,--*)
2835
__gitcomp "$save_opts"
2836
;;
0 commit comments