diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-06-15 18:43:23 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-17 09:21:59 -0700 |
commit | aa7e722dfee957e89476d0467427a5a32d0040f7 (patch) | |
tree | 72693b2d0858d4ded12e337082af10b0d57eeb3b /Documentation/git-stash.txt | |
parent | 2be43516dd23fde3c0096429b9711638a33581dc (diff) | |
download | git-aa7e722dfee957e89476d0467427a5a32d0040f7.tar.gz |
stash doc: document short form -p in synopsis
'git stash save' can take -p, the short form of --patch, as an option.
Document this.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-stash.txt')
-rw-r--r-- | Documentation/git-stash.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-stash.txt b/Documentation/git-stash.txt index cb0c1a6194..632d4fbb0c 100644 --- a/Documentation/git-stash.txt +++ b/Documentation/git-stash.txt @@ -13,7 +13,7 @@ SYNOPSIS 'git stash' drop [-q|--quiet] [<stash>] 'git stash' ( pop | apply ) [--index] [-q|--quiet] [<stash>] 'git stash' branch <branchname> [<stash>] -'git stash' [save [--patch] [-k|--[no-]keep-index] [-q|--quiet] +'git stash' [save [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet] [-u|--include-untracked] [-a|--all] [<message>]] 'git stash' clear 'git stash' create [<message>] |