From: Steffen Prohaska Date: Mon, 23 Sep 2013 18:54:35 +0000 (+0200) Subject: git.txt: fix asciidoc syntax of --*-pathspecs X-Git-Tag: v1.8.5-rc0~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fb02165a3885314b5b356263dd267a5966f92be;p=git git.txt: fix asciidoc syntax of --*-pathspecs Labeled lists require a double colon. [jc] I eyeballed the output from git grep '[^:]:$' Documentation/\*.txt and the patch fixes all breakages of this kind. Signed-off-by: Steffen Prohaska Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git.txt b/Documentation/git.txt index b9a3fecac9..da7be1fdf4 100644 --- a/Documentation/git.txt +++ b/Documentation/git.txt @@ -476,19 +476,19 @@ example the following invocations are equivalent: This is equivalent to setting the `GIT_LITERAL_PATHSPECS` environment variable to `1`. ---glob-pathspecs: +--glob-pathspecs:: Add "glob" magic to all pathspec. This is equivalent to setting the `GIT_GLOB_PATHSPECS` environment variable to `1`. Disabling globbing on individual pathspecs can be done using pathspec magic ":(literal)" ---noglob-pathspecs: +--noglob-pathspecs:: Add "literal" magic to all pathspec. This is equivalent to setting the `GIT_NOGLOB_PATHSPECS` environment variable to `1`. Enabling globbing on individual pathspecs can be done using pathspec magic ":(glob)" ---icase-pathspecs: +--icase-pathspecs:: Add "icase" magic to all pathspec. This is equivalent to setting the `GIT_ICASE_PATHSPECS` environment variable to `1`.