From 0554121e893bbc3ebfd2f8eb7e1cc9b8d672889c Mon Sep 17 00:00:00 2001 From: Mattias Wadman Date: Mon, 3 Jan 2011 09:11:18 -0800 Subject: [PATCH] Fix git stash example, own message require explicit save option --- text/16_Stashing/0_ Stashing.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/16_Stashing/0_ Stashing.markdown b/text/16_Stashing/0_ Stashing.markdown index 81d12c42..27462747 100644 --- a/text/16_Stashing/0_ Stashing.markdown +++ b/text/16_Stashing/0_ Stashing.markdown @@ -7,7 +7,7 @@ state of your work, and after fixing the bug (or, optionally after doing 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 reset your working tree and the index to match the tip of your