config.txt: move uploadarchive.* to a separate file

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Nguyễn Thái Ngọc Duy committed Oct 27, 2018 at 08:23 UTC c61f5562e653e57c7732275d272281ea04421ad4
2 files changed +7 -6
Documentation/config.txt
+1 -6
@@ -423,12 +423,7 @@ include::config/tag.txt[]
423
424 include::config/transfer.txt[]
425
426 -uploadarchive.allowUnreachable::
427 - If true, allow clients to use `git archive --remote` to request
428 - any tree, whether reachable from the ref tips or not. See the
429 - discussion in the "SECURITY" section of
430 - linkgit:git-upload-archive[1] for more details. Defaults to
431 - `false`.
426 +include::config/uploadarchive.txt[]
427
428 uploadpack.hideRefs::
429 This variable is the same as `transfer.hideRefs`, but applies
Documentation/config/uploadarchive.txt new
+6
@@ -0,0 +1,6 @@
1 +uploadarchive.allowUnreachable::
2 + If true, allow clients to use `git archive --remote` to request
3 + any tree, whether reachable from the ref tips or not. See the
4 + discussion in the "SECURITY" section of
5 + linkgit:git-upload-archive[1] for more details. Defaults to
6 + `false`.