Re: [PATCH] Documentation: git-add: correct first example
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:48:12
Greg Bacon [off-list ref] writes:
The first example for git-add covers recursive adding of patterns but contains an extra backslash.
Correct.
quoted hunk
Signed-off-by: Greg Bacon <redacted> --- Documentation/git-add.txt | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-)diff --git a/Documentation/git-add.txt b/Documentation/git-add.txt index f74fcf3..93e8f57 100644 --- a/Documentation/git-add.txt +++ b/Documentation/git-add.txt@@ -149,11 +149,12 @@ those in info/exclude. See linkgit:gitrepository-layout[5]. EXAMPLES -------- -* Adds content from all `\*.txt` files under `Documentation` directory +* Adds content from all `*.txt` files under `Documentation` directory
For this, both
http://www.kernel.org/pub/software/scm/git/docs/git-add.html
and output from
git help add
in my local build seem to be rendered correctly by AsciiDoc.
and its subdirectories: + ------------ -$ git add Documentation/\\*.txt
This indeed results in double-backslash in the output.
+$ git add Documentation/\*.txt
and this seems to fix it. Thanks.