Unknown SSL protocol error in connection to xxx:443

TopCoder.NET發表於2017-12-05

使用git從遠端下載時,出現Unknown SSL protocol error in connection to xxx:443 錯誤。

很有可能是被牆在了外面,這裡針對牆在外面的情況。

設定代理伺服器:

第一種方法:在.gitconfig加上

http.proxy=127.0.0.1:8087

http.sslVerify=false

第二種方法:直接在命令列敲

git config --global http.proxy 127.0.0.1:8087

git config --global http.sslVerify false

之後就可以下載了。

相關文章