diff options
author | William Pursell <bill.pursell@gmail.com> | 2009-02-03 22:41:14 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-03 22:13:47 -0800 |
commit | 7a85f6ae88be5937c32a7b61601a40a02c03fb3f (patch) | |
tree | 2ffc02b80725a7ba3acf6f72a7b2fe1ffcd150de | |
parent | 37fc57a213c5dd7a15dfdf571ce4a58de124cb0f (diff) | |
download | git-7a85f6ae88be5937c32a7b61601a40a02c03fb3f.tar.gz git-7a85f6ae88be5937c32a7b61601a40a02c03fb3f.tar.xz |
User-manual: "git stash <comment>" form is long gone
These days you must explicitly say "git stash save <comment>".
Signed-off-by: William Pursell <bill.pursell@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/user-manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/user-manual.txt b/Documentation/user-manual.txt index 99cb80878..2ae88c575 100644 --- a/Documentation/user-manual.txt +++ b/Documentation/user-manual.txt @@ -1497,7 +1497,7 @@ so on a different branch and then coming back), unstash the work-in-progress changes. ------------------------------------------------ -$ git stash "work in progress for foo feature" +$ git stash save "work in progress for foo feature" ------------------------------------------------ This command will save your changes away to the `stash`, and |