You clone a Git repo and get this error message:
Git failed with a fatal error.
unable to access 'https://github.com/THE_REPO':
OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection github.com:443
This might be because you're behind a proxy. You then need to set proxy for Git in your command tool:
git config --global http.proxy http://your-proxy-url:8080
git config --global https.proxy https://your-proxy-url:8080
You also might need to disable SSL verification:
git config --global http.sslVerify false
Top comments (0)