Skip to content

Commit 6430692

Browse files
Ramsay Jonesjrn
authored andcommitted
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 <[email protected]> Signed-off-by: Jonathan Nieder <[email protected]>
1 parent 02a110a commit 6430692

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation/howto/setup-git-server-over-http.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ Initialize a bare repository
8181
$ git --bare init
8282

8383

84-
Change the ownership to your web-server's credentials. Use "grep ^User
85-
httpd.conf" and "grep ^Group httpd.conf" to find out:
84+
Change the ownership to your web-server's credentials. Use `"grep ^User
85+
httpd.conf"` and `"grep ^Group httpd.conf"` to find out:
8686

8787
$ chown -R www.www .
8888

0 commit comments

Comments
 (0)