diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-10 08:53:04 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-10 08:53:04 -0800 |
commit | 637afcf4e07616d1dd15d33f56c6b72f90f39821 (patch) | |
tree | 50a740f63784f4d7420a431bb73a922cc4e02409 /Documentation | |
parent | 0b4ae29f0328fb8c270030abad132e8f50e05381 (diff) | |
parent | 525ecd26c6cc8d1dc0c6190d8266e5d30b06da51 (diff) | |
download | git-637afcf4e07616d1dd15d33f56c6b72f90f39821.tar.gz |
Merge branch 'tr/http-updates'
* tr/http-updates:
Remove http.authAny
Allow curl to rewind the RPC read buffer
Add an option for using any HTTP authentication scheme, not only basic
http: maintain curl sessions
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/config.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index 65dc587f7c..9f40955f8e 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -1136,6 +1136,12 @@ http.maxRequests:: How many HTTP requests to launch in parallel. Can be overridden by the 'GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5. +http.minSessions:: + The number of curl sessions (counted across slots) to be kept across + requests. They will not be ended with curl_easy_cleanup() until + http_cleanup() is invoked. If USE_CURL_MULTI is not defined, this + value will be capped at 1. Defaults to 1. + http.postBuffer:: Maximum size in bytes of the buffer used by smart HTTP transports when POSTing data to the remote system. |