We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e694e4e + 39e76bb commit 9b1260dCopy full SHA for 9b1260d
src/transports/http.c
@@ -575,6 +575,9 @@ static int apply_proxy_config(http_subtransport *t)
575
if ((error = git_remote__get_http_proxy(t->owner->owner, !!t->connection_data.use_ssl, &url)) < 0)
576
return error;
577
578
+ opts.credentials = t->owner->proxy.credentials;
579
+ opts.certificate_check = t->owner->proxy.certificate_check;
580
+ opts.payload = t->owner->proxy.payload;
581
opts.type = GIT_PROXY_SPECIFIED;
582
opts.url = url;
583
error = git_stream_set_proxy(t->io, &opts);
0 commit comments