diff options
author | Wesley J. Landaker <wjl@icecavern.net> | 2009-04-22 09:48:57 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-04-22 18:39:57 -0700 |
commit | 4ddef0e67d879bf7e18ce2655b057243d894adc1 (patch) | |
tree | f9f377112ad5169de15cacb00aaa101d1c289cff | |
parent | e8d1180467da98c53663e462800f793d2341f5a1 (diff) | |
download | git-4ddef0e67d879bf7e18ce2655b057243d894adc1.tar.gz git-4ddef0e67d879bf7e18ce2655b057243d894adc1.tar.xz |
Documentation: git-svn: fix spurious bolding that mangles the output
Without this fix, the output looks like:
"Keep in mind that the (asterisk) wildcard of the local ref (right of
the :) *must be the ..." -- with half the sentence spuriously bold.
This fixes the problem by simply escaping asciidoc syntax as suggested
by Jeff King <peff@peff.net>.
Signed-off-by: Wesley J. Landaker <wjl@icecavern.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/git-svn.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index 9229d45ad..3e22e4096 100644 --- a/Documentation/git-svn.txt +++ b/Documentation/git-svn.txt @@ -693,7 +693,7 @@ listed below are allowed: tags = tags/*/project-a:refs/remotes/project-a/tags/* ------------------------------------------------------------------------ -Keep in mind that the '*' (asterisk) wildcard of the local ref +Keep in mind that the '\*' (asterisk) wildcard of the local ref (right of the ':') *must* be the farthest right path component; however the remote wildcard may be anywhere as long as it's own independent path component (surrounded by '/' or EOL). This |