欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决git push时出现Failed to connect to github.com port 443: Timed out

程序员文章站 2022-06-14 09:38:59
...

最近,在android studio上push代码到github时,出现Failed to connect to github.com port 443: Timed out错误。
解决git push时出现Failed to connect to github.com port 443: Timed out
此错误是因为代理的设置问题;

解决方法:
进入项目目录中,使用命令行取消代理设置:

git config --global --unset http.proxy
git config --global --unset https.proxy
相关标签: 问题 git github