summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2e77666)
raw | patch | inline | side by side (parent: 2e77666)
author | Junio C Hamano <gitster@pobox.com> | |
Sat, 1 Sep 2007 11:01:54 +0000 (04:01 -0700) | ||
committer | Junio 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 | patch | blob | history | |
Documentation/git-daemon.txt | patch | blob | history |
index cf7617a5b19520d28fb196cb1927019057e061c4..866e0534b8843af3c1789becd06b244162632d01 100644 (file)
--- a/Documentation/config.txt
+++ b/Documentation/config.txt
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
index efdcdadea701cc1aabcd36d0586c885ba32131e7..99e47c9c257d7bb1de78729460069b5c4ebc47dd 100644 (file)
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
----------------------------------------------------------------