aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/howto
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2013-10-11 20:38:36 +0100
committerJonathan Nieder <jrnieder@gmail.com>2013-10-14 07:23:40 -0700
commit643069213532b8b035e771afbc4f2c77b79b20e2 (patch)
tree6390bead01fdefe0b96a950ddba08cbe74a5b343 /Documentation/howto
parent02a110ad435a6ccda648f09f94e546dfd7bdd0ac (diff)
downloadgit-643069213532b8b035e771afbc4f2c77b79b20e2.tar.gz
howto/setup-git-server-over-http: fix unescaped '^'s
The text contains two 'grep' invocations which include the 'start of line' regular expression character '^'. Asciidoc mis-interprets this use of '^' as a superscript request. In order to fix this formatting problem, use backticks (`) to quote the text of the affected 'grep' command invocations. Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'Documentation/howto')
-rw-r--r--Documentation/howto/setup-git-server-over-http.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/howto/setup-git-server-over-http.txt b/Documentation/howto/setup-git-server-over-http.txt
index 7f4943e102..981cbddc86 100644
--- a/Documentation/howto/setup-git-server-over-http.txt
+++ b/Documentation/howto/setup-git-server-over-http.txt
@@ -81,8 +81,8 @@ Initialize a bare repository
$ git --bare init
-Change the ownership to your web-server's credentials. Use "grep ^User
-httpd.conf" and "grep ^Group httpd.conf" to find out:
+Change the ownership to your web-server's credentials. Use `"grep ^User
+httpd.conf"` and `"grep ^Group httpd.conf"` to find out:
$ chown -R www.www .