解决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"
相关推荐
@BreCaspian10 分钟前
如何在 GitHub 上开源一个小项目:从创建到长期维护的完整指南
开源·github
qianmoQ3 小时前
GitHub 趋势日报 (2025年04月02日)
github
seabirdssss5 小时前
通过动态获取项目的上下文路径来确保请求的 URL 兼容两种启动方式(IDEA 启动和 Tomcat 部署)下都能正确解析
java·okhttp·tomcat·intellij-idea
mortimer5 小时前
半开源语音克隆神器 MegaTTS3:安装难、用起来更难?手把手从安装到使用
开源·github·音视频开发
@BreCaspian8 小时前
生成 SSH Key 并配置 GitHub/GitLab 详细教程
ssh·gitlab·github
uhakadotcom8 小时前
阿里云Tea OpenAPI:简化Java与阿里云服务交互
后端·面试·github
uhakadotcom9 小时前
图像识别中的三大神经网络:Inception、ResNet和VGG
算法·面试·github
uhakadotcom9 小时前
DeepFM算法:提升CTR预估和推荐系统的强大工具
算法·面试·github
uhakadotcom10 小时前
Python 中的 @staticmethod 和 @classmethod 详解
后端·面试·github
iccb101310 小时前
在线聊天系统中的多窗口数据同步技术解密
java·github