I am trying to clone from a corporate git repo, but always receive this error message after a while:
fatal: unable to access URL: Received HTTP code 503 from proxy after CONNECT
I have the following .gitconfig file:
[https]
sslVerify = false
proxy = https://proxy.corpadderess:8080
[http]
sslVerify = false
proxy = http://proxy.corpadderess:8080
If it is a corporate repo, you might want to ignore proxy settings. One possible solution to your problem is here:
Ignore proxy: export no_proxy=YOUR_CORP_DOMAIN_ON_GITHUB
, where the domain name might be in the form of github.acme.net
Ignore SSL verification: git config --global http.sslVerify "false"
You could then clone the repo w/ git clone YOUR_HTTPS_CLONE_URL