1. Timed out 报错
fatal: unable to access 'https://github.com/xxxx/xxxx.git/': Failed to connect to github.com port 443: Timed out
解决
设置代理
git config --global http.proxy 127.0.0.1:1080 #为全局的 git 项目都设置代理
git config --local http.proxy 127.0.0.1:1080 #为某个 git 项目单独设置代理
另外:
查看代理
git config --global http.proxy # 输出 127.0.0.1:1080
git config --local http.proxy # 输出 127.0.0.1:1080
取消代理文章来源:https://www.toymoban.com/news/detail-830008.html
git config --global --unset http.proxy
git config --global --unset https.proxy
2. OpenSSL 报错
fatal: unable to access 'https://github.com/code-huan/vuepress-theme-hope.git/': OpenSSL SSL_read: Connection was reset, errno 10054
解决
修改设置,解除ssl验证文章来源地址https://www.toymoban.com/news/detail-830008.html
git config --global http.sslVerify "false"
到了这里,关于解决IDEA Failed to connect to github.com port 443: Timed out 问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!