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 b522c33 + 3851e44 commit 5ecbaafCopy full SHA for 5ecbaaf
contrib/completion/git-completion.bash
@@ -2810,7 +2810,7 @@ _git_show_branch ()
2810
_git_stash ()
2811
{
2812
local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked'
2813
- local subcommands='save list show apply clear drop pop create branch'
+ local subcommands='push save list show apply clear drop pop create branch'
2814
local subcommand="$(__git_find_on_cmdline "$subcommands")"
2815
if [ -z "$subcommand" ]; then
2816
case "$cur" in
@@ -2825,6 +2825,9 @@ _git_stash ()
2825
esac
2826
else
2827
case "$subcommand,$cur" in
2828
+ push,--*)
2829
+ __gitcomp "$save_opts --message"
2830
+ ;;
2831
save,--*)
2832
__gitcomp "$save_opts"
2833
;;
0 commit comments