diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-11-19 22:47:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-19 22:47:59 +0100 |
commit | eeb92d7e60d64c55cb6c766158dd078c905c95e0 (patch) | |
tree | 11e28ebfa3a2f212d90f1a1045c400d849a994f6 /Documentation/gittutorial-2.txt | |
parent | Merge branch 'mh/doc-remote-helper-xref' (diff) | |
parent | gittutorial: fix output of 'git status' (diff) | |
download | git-eeb92d7e60d64c55cb6c766158dd078c905c95e0.tar.xz git-eeb92d7e60d64c55cb6c766158dd078c905c95e0.zip |
Merge branch 'sn/tutorial-status-output-example'
* sn/tutorial-status-output-example:
gittutorial: fix output of 'git status'
Diffstat (limited to 'Documentation/gittutorial-2.txt')
-rw-r--r-- | Documentation/gittutorial-2.txt | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/Documentation/gittutorial-2.txt b/Documentation/gittutorial-2.txt index f6fbf814fb..30d2119565 100644 --- a/Documentation/gittutorial-2.txt +++ b/Documentation/gittutorial-2.txt @@ -368,17 +368,18 @@ situation: ------------------------------------------------ $ git status -# On branch master -# Changes to be committed: -# (use "git reset HEAD <file>..." to unstage) -# -# new file: closing.txt -# -# Changes not staged for commit: -# (use "git add <file>..." to update what will be committed) -# -# modified: file.txt -# +On branch master +Changes to be committed: + (use "git reset HEAD <file>..." to unstage) + + new file: closing.txt + +Changes not staged for commit: + (use "git add <file>..." to update what will be committed) + (use "git checkout -- <file>..." to discard changes in working directory) + + modified: file.txt + ------------------------------------------------ Since the current state of closing.txt is cached in the index file, |