1
0

Chevrons in Git outputs disappear if not encoded

Also added some in to be consistent with expected output
when `git log` is run to show author email addresses inside such.
This commit is contained in:
Soon Van
2012-12-15 11:25:06 -05:00
parent 292167e0de
commit 300f51758c
4 changed files with 31 additions and 31 deletions

View File

@@ -162,14 +162,14 @@ layout: reference
# Initial commit
#
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
# (use "git rm --cached &lt;file>..." to unstage)
#
# <span class="green">new file: README</span>
# <span class="green">new file: hello.rb</span>
#
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (use "git add &lt;file>..." to update what will be committed)
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
#
# <span class="red">modified: README</span>
#
@@ -474,7 +474,7 @@ nothing to commit (working directory clean)
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
# (use "git reset HEAD &lt;file>..." to unstage)
#
# modified: hello.rb
#
@@ -514,7 +514,7 @@ Further paragraphs come after blank lines.
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
# (use "git reset HEAD &lt;file>..." to unstage)
#
# modified: hello.rb
#
@@ -558,8 +558,8 @@ Further paragraphs come after blank lines.
<b>$ git commit -m 'changes to hello file'</b>
# On branch master
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
# (use "git add &lt;file>..." to update what will be committed)
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
#
# modified: hello.rb
#
@@ -680,7 +680,7 @@ M hello.rb
<b>$ git status</b>
# On branch master
# Changes to be committed:
# <span class="hl">(use "git reset HEAD <file>..." to unstage)</span>
# <span class="hl">(use "git reset HEAD &lt;file>..." to unstage)</span>
#
# <span class="green">modified: README</span>
# <span class="green">modified: hello.rb</span>
@@ -735,13 +735,13 @@ nothing to commit (working directory clean)
<b>$ git status</b>
# On branch master
# Changes to be committed:
# (use "git reset HEAD <file>..." to unstage)
# (use "git reset HEAD &lt;file>..." to unstage)
#
# <span class="green">modified: README</span>
#
# 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)
# (use "git add &lt;file>..." to update what will be committed)
# (use "git checkout -- &lt;file>..." to discard changes in working directory)
#
# <span class="red">modified: README</span>
#