aboutsummaryrefslogtreecommitdiffstats
path: root/http.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-10-02 13:42:13 -0700
committerJunio C Hamano <gitster@pobox.com>2012-10-02 13:42:14 -0700
commit0a65df58a0d5b17a72edd4e6247be29ab8af2b09 (patch)
tree1594b2807979694e3bfe96de33ba28e9a5c982b6 /http.c
parentMerge branch 'sp/maint-http-info-refs-no-retry' into maint (diff)
parentEnable info/refs gzip decompression in HTTP client (diff)
downloadgit-0a65df58a0d5b17a72edd4e6247be29ab8af2b09.tar.gz
git-0a65df58a0d5b17a72edd4e6247be29ab8af2b09.zip
Merge branch 'sp/maint-http-enable-gzip' into maint
"git fetch" over http advertised that it supports "deflate", which is much less common, and did not advertise more common "gzip" on its Accept-Encoding header. * sp/maint-http-enable-gzip: Enable info/refs gzip decompression in HTTP client
Diffstat (limited to 'http.c')
-rw-r--r--http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/http.c b/http.c
index 9bac1d89fd..345c171c5f 100644
--- a/http.c
+++ b/http.c
@@ -818,6 +818,7 @@ static int http_request(const char *url, void *result, int target, int options)
curl_easy_setopt(slot->curl, CURLOPT_URL, url);
curl_easy_setopt(slot->curl, CURLOPT_HTTPHEADER, headers);
+ curl_easy_setopt(slot->curl, CURLOPT_ENCODING, "gzip");
if (start_active_slot(slot)) {
run_active_slot(slot);