Git bash Unknown SSL protocol error in connection to github.com:443
git config --global http.sslVerify false
git config --global --unset http.https://github.com.proxy
版权申明
本文系作者 @CXCBLOG(剑弗) 原创发布在CXCBLOG站点。未经许可,禁止转载。
git config --global http.sslVerify false
git config --global --unset http.https://github.com.proxy
本文系作者 @CXCBLOG(剑弗) 原创发布在CXCBLOG站点。未经许可,禁止转载。
全部评论 1
CXCBLOG(剑弗)
Google Chrome Windows 10解决方案:1
依次执行以下命令就可以正常使用
git config --global --unset http.proxy
git config --global --unset https.proxy
方法2.打开终端在终端中执行以下命令就可以了。
git config--global--addremote.origin.proxy""
方法3.若第一种方法输入命令不管用,可以尝试先输入下边命令,然后在执行第一种方法的命令。
git config--globalhttp.sslBackend"openssl"
git config--global--addremote.origin.proxy""