fatal: unable to access 'https://github.com/xxx.git/': OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443
-
打开Git Bash,输入:git config --global http.proxy
-
若无输出,则未设置Git Bash中的代理,使用以下命令对其进行设置
git config --global http.proxy proxyaddress:port
这里proxyaddress和port指所用代理的地址和端口,具体数值请看自己的设置。 -
再次输命令**git config --global http.proxy **即可。
附加:
要重置Git Bash上的代理,输入:git config --global --unset http.proxy