diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-12-28 11:32:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-12-28 11:32:37 -0800 |
commit | f1c12e1b4af2eec4eefff9350b74601b36f51d85 (patch) | |
tree | 726933f3fdae6bcec99c28a66fbe5a1cef7243cc /http-fetch.c | |
parent | 699eb54876669f0c109a34e0c01a9dd0c67725fa (diff) | |
parent | a4ddbc33d7906f0e10c68c140a9a1003d9715a77 (diff) | |
download | git-f1c12e1b4af2eec4eefff9350b74601b36f51d85.tar.gz |
Merge branch 'jk/maint-push-over-dav' into maint
* jk/maint-push-over-dav:
http-push: enable "proactive auth"
t5540: test DAV push with authentication
Diffstat (limited to 'http-fetch.c')
-rw-r--r-- | http-fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-fetch.c b/http-fetch.c index 69299b7bd2..94d47cbb28 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -67,7 +67,7 @@ int main(int argc, const char **argv) git_config(git_default_config, NULL); - http_init(NULL, url); + http_init(NULL, url, 0); walker = get_http_walker(url); walker->get_tree = get_tree; walker->get_history = get_history; |