Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-reference.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGergely Polonkai <gergely@polonkai.eu>2013-09-23 19:22:29 +0400
committerGergely Polonkai <gergely@polonkai.eu>2013-09-23 19:22:29 +0400
commit1b504ac584ebfb15026f260b47e79451c2f65985 (patch)
treeb938a62eea214aee5ab0bac33f438f9ec0d01610
parent66bca05ec7398e3f7eb69b606602b98dedac9e47 (diff)
Applied recomennded modifications.
-rw-r--r--basic/index.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/basic/index.html b/basic/index.html
index 8f64fa5..0904da9 100644
--- a/basic/index.html
+++ b/basic/index.html
@@ -849,11 +849,11 @@ nothing to commit (working directory clean)
It will then leave you at the state of the last commit.
</p>
- <p>If you have untracked files, <code>git stash</code> doesn't save it. You
- can either add stage those files with <code>git add</code> (you don't have
- to commit) before stashing, or, if you have a recent Git version (1.7.7 or
- above), you can use <code>git stash -u</code> to stash also unversioned
- files.</p>
+ <p>If you have untracked files, <code>git stash</code> will not include
+ them. You can either stage those files with <code>git add</code> (you don't
+ have to commit) before stashing, or, if you have a recent Git version
+ (1.7.7 or above), you can use <code>git stash -u</code> to also stash also
+ unversioned files.</p>
<pre>
<b>$ git status -s</b>