diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-05-21 14:27:59 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-21 14:27:59 -0700 |
commit | 008442f5e798e511cc0cd5d9443552b0d107d558 (patch) | |
tree | e390298df6995f791998f08b2a269b8f61389d45 /Documentation | |
parent | e4d594c6bdcb25b996120fe21c901af7a08a7f6d (diff) | |
parent | e77b0b5d0fdac411607dbae11ccad87dccd332d3 (diff) | |
download | git-008442f5e798e511cc0cd5d9443552b0d107d558.tar.gz |
Merge branch 'maint-1.5.4' into maint
* maint-1.5.4:
git-am: fix typo in usage message
doc/git-daemon: s/uploadarchive/uploadarch/
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-daemon.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-daemon.txt b/Documentation/git-daemon.txt index fd83bc7833..cf261dd40d 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 ---------------------------------------------------------------- |