diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-05-24 22:44:03 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-05-24 10:55:37 -0700 |
commit | 4c32e361f6b5fcce037ebfff8b6e42622b3fe509 (patch) | |
tree | 55818e1916cd3f8134ef58ee1d551541cf3a1ba3 | |
parent | Git 1.8.2.3 (diff) | |
download | tgif-4c32e361f6b5fcce037ebfff8b6e42622b3fe509.tar.xz |
urls.txt: avoid auto converting to hyperlink
file:///path/to/repo.git/ is converted to a hyperlink while others are
not. Put a backslash to avoid the conversion. Tested with asciidoc
8.6.5.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Documentation/urls.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/urls.txt b/Documentation/urls.txt index 3ca122faed..60ba300117 100644 --- a/Documentation/urls.txt +++ b/Documentation/urls.txt @@ -33,7 +33,7 @@ For local repositories, also supported by Git natively, the following syntaxes may be used: - /path/to/repo.git/ -- file:///path/to/repo.git/ +- \file:///path/to/repo.git/ ifndef::git-clone[] These two syntaxes are mostly equivalent, except when cloning, when |