From: Junio C Hamano Date: Mon, 8 Feb 2010 20:12:41 +0000 (-0800) Subject: git-add documentation: Fix shell quoting example X-Git-Tag: v1.6.6.2~14^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bf7cbb2f043e4a989dacebe381841bcdbd75588b;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index 2eabbc8f7..f14319a74 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