1. Timed out 報(bào)錯(cuò)
fatal: unable to access 'https://github.com/xxxx/xxxx.git/': Failed to connect to github.com port 443: Timed out
解決
設(shè)置代理
git config --global http.proxy 127.0.0.1:1080 #為全局的 git 項(xiàng)目都設(shè)置代理
git config --local http.proxy 127.0.0.1:1080 #為某個(gè) git 項(xiàng)目單獨(dú)設(shè)置代理
另外:
查看代理
git config --global http.proxy # 輸出 127.0.0.1:1080
git config --local http.proxy # 輸出 127.0.0.1:1080
取消代理文章來(lái)源:http://www.zghlxwxcb.cn/news/detail-830008.html
git config --global --unset http.proxy
git config --global --unset https.proxy
2. OpenSSL 報(bào)錯(cuò)
fatal: unable to access 'https://github.com/code-huan/vuepress-theme-hope.git/': OpenSSL SSL_read: Connection was reset, errno 10054
解決
修改設(shè)置,解除ssl驗(yàn)證文章來(lái)源地址http://www.zghlxwxcb.cn/news/detail-830008.html
git config --global http.sslVerify "false"
到了這里,關(guān)于解決IDEA Failed to connect to github.com port 443: Timed out 問(wèn)題的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!