Hi all, I just realized that git cloning behind a webproxy is broken in version 2.34.1 (Ubuntu 22.04). The environment bash variables http_proxy, https_proxy, HTTP_PROXY and HTTPS_PROXY are all set with the value "http://myusername:mypassword@ourwebproxy:3128/". git gives me the following error message on cloning: $git clone https://github.com/XXXX/YYYY fatal: unable to access 'https://github.com/XXXX/YYYY/': Received HTTP code 407 from proxy after CONNECT For example wget or curl http/https requests in the same shell work without any issues and use the same proxy settings from the environment variables. In pcap traces I see that git requests the URL through the proxy, receives an http 407 authentication required, and repeats the same request again without credentials, which gets denied a second time. On another very old machine with git 1.9.1 it requests the URL through the proxy, receives an http 407 authentication required, and repeats the request with credentials, which is allowed then. Even with git config --global and --system variables http.proxy and https.proxy the authentication required reply is ignored. The git configuration is all default, except the proxy variables. Hope this helps to reproduce and fix this issue. Thank you! Best regards Holger