diff options
author | Stefan Naewe <stefan.naewe@gmail.com> | 2014-11-13 10:40:07 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-11-13 10:53:50 -0800 |
commit | 8942821ec046238b6cea12e6dd4dfa7ba51c133e (patch) | |
tree | d73fe315e9318e9f331ce8a7fc69ae91a39012e4 /Documentation/gittutorial.txt | |
parent | 7fa1365c54c28b3cd9375539f381b54061a1880d (diff) | |
download | git-8942821ec046238b6cea12e6dd4dfa7ba51c133e.tar.gz |
gittutorial: fix output of 'git status'sn/tutorial-status-output-example
'git status' doesn't output leading '#'s these days.
Signed-off-by: Stefan Naewe <stefan.naewe@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gittutorial.txt')
-rw-r--r-- | Documentation/gittutorial.txt | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Documentation/gittutorial.txt b/Documentation/gittutorial.txt index 8262196318..5dab0f8161 100644 --- a/Documentation/gittutorial.txt +++ b/Documentation/gittutorial.txt @@ -107,14 +107,15 @@ summary of the situation with 'git status': ------------------------------------------------ $ git status -# On branch master -# Changes to be committed: -# (use "git reset HEAD <file>..." to unstage) -# -# modified: file1 -# modified: file2 -# modified: file3 -# +On branch master +Changes to be committed: +Your branch is up-to-date with 'origin/master'. + (use "git reset HEAD <file>..." to unstage) + + modified: file1 + modified: file2 + modified: file3 + ------------------------------------------------ If you need to make any further adjustments, do so now, and then add any |