From 2aca1c08b8497951315d68e983b14273ab361865 Mon Sep 17 00:00:00 2001 From: Eric Nielsen Date: Fri, 2 Sep 2016 07:33:17 -0500 Subject: [PATCH] git-stash: Further improve verbosity of examples --- pages/common/git-stash.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/common/git-stash.md b/pages/common/git-stash.md index 3f5e52718..11decd3fa 100644 --- a/pages/common/git-stash.md +++ b/pages/common/git-stash.md @@ -2,11 +2,11 @@ > Stash local Git changes in a temporary area. -- Stash current changes, except new files: +- Stash current changes, except new (untracked) files: `git stash [save {{optional_stash_message}}]` -- Stash current changes, including new/untracked files: +- Stash current changes, including new (untracked) files: `git stash -u` @@ -18,7 +18,7 @@ `git stash apply {{optional_stash_name_or_commit}}` -- Apply a stash (default is stash@{0}), and remove it from the list if applying doesn't cause conflicts: +- Apply a stash (default is stash@{0}), and remove it from the stash list if applying doesn't cause conflicts: `git stash pop {{optional_stash_name}}`