diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2009-07-27 20:37:10 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-07-31 07:33:06 -0700 |
commit | ea41cfc4f54f884582dbda307287f12bb1fc15e9 (patch) | |
tree | 390b7e770faea618226d4841ecd127563e1192f6 /Documentation/git-stash.txt | |
parent | 6517452d7a4269e9a34648a28b8931640299f458 (diff) | |
download | git-ea41cfc4f54f884582dbda307287f12bb1fc15e9.tar.gz |
Make 'git stash -k' a short form for 'git stash save --keep-index'
To save me from the carpal tunnel syndrome, make 'git stash' accept
the short option '-k' instead of '--keep-index', and for even more
convenience, let's DWIM when this developer forgot to type the 'save'
command.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-stash.txt')
-rw-r--r-- | Documentation/git-stash.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt index 1c64a02fe5..a031836a26 100644 --- a/Documentation/git-stash.txt +++ b/Documentation/git-stash.txt @@ -13,7 +13,8 @@ SYNOPSIS 'git stash' drop [-q|--quiet] [<stash>] 'git stash' ( pop | apply ) [--index] [-q|--quiet] [<stash>] 'git stash' branch <branchname> [<stash>] -'git stash' [save [--keep-index] [-q|--quiet] [<message>]] +'git stash' [save [-k|--keep-index] [-q|--quiet] [<message>]] +'git stash' [-k|--keep-index] 'git stash' clear 'git stash' create |