aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/config
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-02 21:37:18 +0900
committerJunio C Hamano <gitster@pobox.com>2023-01-02 21:37:18 +0900
commit0903d8bbdef6c2607f2e0bf43a4d10cf54b03744 (patch)
treecfa616909c89d5830ef6c1251e7fd46bcb04edc9 /Documentation/config
parent3f2e4c09c769dc2fbbabfcfa625451f9d98bd49a (diff)
parent876094ac16870727207e6afc0b26060101a52359 (diff)
downloadgit-0903d8bbdef6c2607f2e0bf43a4d10cf54b03744.tar.gz
Merge branch 'ds/bundle-uri-4'
Bundle URIs part 4. * ds/bundle-uri-4: clone: unbundle the advertised bundles bundle-uri: download bundles from an advertised list bundle-uri: allow relative URLs in bundle lists strbuf: introduce strbuf_strip_file_from_path() bundle-uri: serve bundle.* keys from config bundle-uri client: add helper for testing server transport: rename got_remote_heads bundle-uri client: add boolean transfer.bundleURI setting clone: request the 'bundle-uri' command when available t: create test harness for 'bundle-uri' command protocol v2: add server-side "bundle-uri" skeleton
Diffstat (limited to 'Documentation/config')
-rw-r--r--Documentation/config/transfer.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config/transfer.txt b/Documentation/config/transfer.txt
index 264812cca4..c3ac767d1e 100644
--- a/Documentation/config/transfer.txt
+++ b/Documentation/config/transfer.txt
@@ -115,3 +115,9 @@ transfer.unpackLimit::
transfer.advertiseSID::
Boolean. When true, client and server processes will advertise their
unique session IDs to their remote counterpart. Defaults to false.
+
+transfer.bundleURI::
+ When `true`, local `git clone` commands will request bundle
+ information from the remote server (if advertised) and download
+ bundles before continuing the clone through the Git protocol.
+ Defaults to `false`.