summaryrefslogtreecommitdiff
path: root/Documentation/git.txt
diff options
context:
space:
mode:
authorSteffen Prohaska <prohaska@zib.de>2013-09-23 18:54:35 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-15 22:47:05 (GMT)
commit6fb02165a3885314b5b356263dd267a5966f92be (patch)
treecfc70893a624c2c0ec0c498c981b5d9390fde640 /Documentation/git.txt
parent2b7ca916fcffafe9cfd967cce87436a9372ae969 (diff)
downloadgit-6fb02165a3885314b5b356263dd267a5966f92be.zip
git-6fb02165a3885314b5b356263dd267a5966f92be.tar.gz
git-6fb02165a3885314b5b356263dd267a5966f92be.tar.bz2
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 <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git.txt')
-rw-r--r--Documentation/git.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git.txt b/Documentation/git.txt
index b9a3fec..da7be1f 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`.