Documentation: minor AsciiDoc mark-up fixes.
authorJunio C Hamano <gitster@pobox.com>
Sat, 1 Sep 2007 11:01:54 +0000 (04:01 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 1 Sep 2007 11:06:13 +0000 (04:06 -0700)
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/git-daemon.txt
index cf7617a5b19520d28fb196cb1927019057e061c4..866e0534b8843af3c1789becd06b244162632d01 100644 (file)
@@ -301,12 +301,12 @@ alias.*::
        hide existing git commands are ignored. Arguments are split by
        spaces, the usual shell quoting and escaping is supported.
        quote pair and a backslash can be used to quote them.
        hide existing git commands are ignored. Arguments are split by
        spaces, the usual shell quoting and escaping is supported.
        quote pair and a backslash can be used to quote them.
-
-       If the alias expansion is prefixed with an exclamation point,
-       it will be treated as a shell command.  For example, defining
-       "alias.new = !gitk --all --not ORIG_HEAD", the invocation
-       "git new" is equivalent to running the shell command
-       "gitk --all --not ORIG_HEAD".
++
+If the alias expansion is prefixed with an exclamation point,
+it will be treated as a shell command.  For example, defining
+"alias.new = !gitk --all --not ORIG_HEAD", the invocation
+"git new" is equivalent to running the shell command
+"gitk --all --not ORIG_HEAD".
 
 apply.whitespace::
        Tells `git-apply` how to handle whitespaces, in the same way
 
 apply.whitespace::
        Tells `git-apply` how to handle whitespaces, in the same way
index efdcdadea701cc1aabcd36d0586c885ba32131e7..99e47c9c257d7bb1de78729460069b5c4ebc47dd 100644 (file)
@@ -248,16 +248,16 @@ a subdirectory for each virtual host IP address supported.
 Repositories can still be accessed by hostname though, assuming
 they correspond to these IP addresses.
 
 Repositories can still be accessed by hostname though, assuming
 they correspond to these IP addresses.
 
-
-To enable `git-archive --remote` and disable `git-fetch` against
-a repository, have the following in the configuration file in the
-repository (that is the file 'config' next to 'HEAD', 'refs' and
-'objects').
+selectively enable/disable services per repository::
+       To enable `git-archive --remote` and disable `git-fetch` against
+       a repository, have the following in the configuration file in the
+       repository (that is the file 'config' next to 'HEAD', 'refs' and
+       'objects').
 +
 ----------------------------------------------------------------
 +
 ----------------------------------------------------------------
-[daemon]
-       uploadpack = false
-       uploadarchive = true
+       [daemon]
+               uploadpack = false
+               uploadarchive = true
 ----------------------------------------------------------------
 
 
 ----------------------------------------------------------------