bash: add new 'git stash' subcommands

Namely 'save', 'drop', 'pop' and 'create'

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
This commit is contained in:
SZEDER Gábor 2008-03-10 16:02:24 +01:00 committed by Shawn O. Pearce
parent 3ff1320d4b
commit 88b302f5e2

View file

@ -1119,7 +1119,7 @@ _git_show ()
_git_stash ()
{
local subcommands='list show apply clear'
local subcommands='save list show apply clear drop pop create'
if [ -z "$(__git_find_subcommand "$subcommands")" ]; then
__gitcomp "$subcommands"
fi