summaryrefslogtreecommitdiff
path: root/Documentation/git-daemon.txt
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2008-05-19 20:08:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-05-20 05:46:13 (GMT)
commit74190d2363a1be81b06992bebbff6bd59f943fe7 (patch)
tree1962e19bb7838b9e42871625b63da34112aec3d9 /Documentation/git-daemon.txt
parentb7893cde53eb2834deb16820eccb709d2636b81b (diff)
downloadgit-74190d2363a1be81b06992bebbff6bd59f943fe7.zip
git-74190d2363a1be81b06992bebbff6bd59f943fe7.tar.gz
git-74190d2363a1be81b06992bebbff6bd59f943fe7.tar.bz2
doc/git-daemon: s/uploadarchive/uploadarch/
The git-daemon upload-archive feature has always used the config directive 'daemon.uploadarch'; the documentation which came later seems to have just mistakenly used the wrong name. Noticed by lionel@over-blog.com. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-daemon.txt')
-rw-r--r--Documentation/git-daemon.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-daemon.txt b/Documentation/git-daemon.txt
index fd83bc7..cf261dd 100644
--- a/Documentation/git-daemon.txt
+++ b/Documentation/git-daemon.txt
@@ -174,7 +174,7 @@ upload-pack::
upload-archive::
This serves `git-archive --remote`. It is disabled by
default, but a repository can enable it by setting
- `daemon.uploadarchive` configuration item to `true`.
+ `daemon.uploadarch` configuration item to `true`.
receive-pack::
This serves `git-send-pack` clients, allowing anonymous
@@ -257,7 +257,7 @@ selectively enable/disable services per repository::
----------------------------------------------------------------
[daemon]
uploadpack = false
- uploadarchive = true
+ uploadarch = true
----------------------------------------------------------------