diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2008-03-10 16:02:24 +0100 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-03-10 19:45:20 -0400 |
commit | 88b302f5e2e0a6f6610912df49c473967fe59c89 (patch) | |
tree | 346c7cc699d56dea88fca807f8c9f164f83162ba | |
parent | bash: refactor searching for subcommands on the command line (diff) | |
download | tgif-88b302f5e2e0a6f6610912df49c473967fe59c89.tar.xz |
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-x | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 438e193bd0..c62b877aeb 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 |