解决IDEA Failed to connect to github.com port 443: Timed out 问题

1. Timed out 报错

fatal: unable to access 'https://github.com/xxxx/xxxx.git/': Failed to connect to github.com port 443: Timed out

解决

设置代理

shell 复制代码
git config --global http.proxy 127.0.0.1:1080   #为全局的 git 项目都设置代理

git config --local  http.proxy 127.0.0.1:1080    #为某个 git 项目单独设置代理

另外:

查看代理

shell 复制代码
git config --global http.proxy      # 输出 127.0.0.1:1080

git config --local http.proxy        # 输出 127.0.0.1:1080

取消代理

shell 复制代码
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验证

shell 复制代码
git config --global http.sslVerify "false"
相关推荐
Smile丶凉轩4 分钟前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github
小林想被监督学习38 分钟前
idea怎么打开两个窗口,运行两个项目
java·ide·intellij-idea
HoneyMoose40 分钟前
IDEA 2024.3 版本更新主要功能介绍
java·ide·intellij-idea
是老余42 分钟前
本地可运行,jar包运行错误【解决实例】:通过IDEA的maven package打包多模块项目
java·maven·intellij-idea·jar
crazy_wsp43 分钟前
IDEA怎么定位java类所用maven依赖版本及引用位置
java·maven·intellij-idea
pumpkin845141 小时前
GitHub 和 GitLab
gitlab·github
尘浮生4 小时前
Java项目实战II基于微信小程序的电影院买票选座系统(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven·intellij-idea
会讲英语的码农4 小时前
Git项目管理
gitee·github
油泼辣子多加5 小时前
2024年11月21日Github流行趋势
github
计算机毕设指导66 小时前
基于 SpringBoot 的作业管理系统【附源码】
java·vue.js·spring boot·后端·mysql·spring·intellij-idea