summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSZEDER Gábor <szeder@ira.uka.de>2008-03-10 15:02:24 (GMT)
committerShawn O. Pearce <spearce@spearce.org>2008-03-10 23:45:20 (GMT)
commit88b302f5e2e0a6f6610912df49c473967fe59c89 (patch)
tree346c7cc699d56dea88fca807f8c9f164f83162ba
parent3ff1320d4be164e35a685d8d00b6f44084be76e0 (diff)
downloadgit-88b302f5e2e0a6f6610912df49c473967fe59c89.zip
git-88b302f5e2e0a6f6610912df49c473967fe59c89.tar.gz
git-88b302f5e2e0a6f6610912df49c473967fe59c89.tar.bz2
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>
-rwxr-xr-xcontrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 438e193..c62b877 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -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