diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-02 22:52:57 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-03 01:04:19 -0700 |
commit | 54bd25580e227c15a5f1a2b01be794b65e434665 (patch) | |
tree | 337a64087d635907d09d2ea49d0ccce6a8db68b8 /Documentation/git-rev-parse.txt | |
parent | b599deec18719379167c639613379abb9205e065 (diff) | |
download | git-54bd25580e227c15a5f1a2b01be794b65e434665.tar.gz git-54bd25580e227c15a5f1a2b01be794b65e434665.tar.xz |
escape tilde in Documentation/git-rev-parse.txt
Fixes a failure to build the git-rev-parse manpage, seen with
asciidoc 8.0.0
We would love to use nicer quoting $$~$$ but alas asciidoc 7
does not know about it. So use asciidoc.conf and define {tilde}
to be ~.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'Documentation/git-rev-parse.txt')
-rw-r--r-- | Documentation/git-rev-parse.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-rev-parse.txt b/Documentation/git-rev-parse.txt index b761b4b96..2f1306c1d 100644 --- a/Documentation/git-rev-parse.txt +++ b/Documentation/git-rev-parse.txt @@ -138,7 +138,7 @@ syntax. 'rev{caret}0' means the commit itself and is used when 'rev' is the object name of a tag object that refers to a commit object. -* A suffix '~<n>' to a revision parameter means the commit +* A suffix '{tilde}<n>' to a revision parameter means the commit object that is the <n>th generation grand-parent of the named commit object, following only the first parent. I.e. rev~3 is equivalent to rev{caret}{caret}{caret} which is equivalent to\ |