diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-02-08 12:12:41 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-08 12:12:41 -0800 |
commit | bf7cbb2f043e4a989dacebe381841bcdbd75588b (patch) | |
tree | 3f6ec7b892fc38272e484dd31f67c1b2ab852a71 | |
parent | Documentation: improve "add", "pull" and "format-patch" examples (diff) | |
download | tgif-bf7cbb2f043e4a989dacebe381841bcdbd75588b.tar.xz |
git-add documentation: Fix shell quoting example
When 921177f (Documentation: improve "add", "pull" and "format-patch"
examples, 2008-05-07) converted this from enumeration header to displayed
text, it failed to adjust for the AsciiDoc's rule to quote backslashes.
In displayed text, backslash is shown verbatim, while in enumeration
header, we need to double it.
We have a similar construct in git-rm.txt documentation, and need to be
careful when somebody wants to update it to match the style of the "git
add" example.
Noticed by: Greg Bacon <gbacon@dbresearch.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/git-add.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 2eabbc8f7c..f14319a740 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt @@ -103,7 +103,7 @@ EXAMPLES and its subdirectories: + ------------ -$ git add Documentation/\\*.txt +$ git add Documentation/\*.txt ------------ + Note that the asterisk `\*` is quoted from the shell in this |