Git报错汇总

错误内容:
Error: Failed to connect to github.com port 443 after xxx ms: Timed out

第一步:查询自己的proxy

1
git config --global -l

这个时候会显示你自己的proxy,例如:

//如果没有配置过,以下内容可能为空

1
2
3
4
user.name=SteveJobs
user.email=hello@world.com
http.proxy=127.0.0.1:25565
https.proxy=127.0.0.1:25565

第二步:删除自己的proxy设置

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy

第三步:重新设置自己的proxy
例如我这里使用Clash for Windows,默认端口号为7890。

1
2
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

第四步:检查配置后的proxy

1
git config --global -l

结果:

1
2
3
4
user.name=SteveJobs
user.email=hello@world.com
http.proxy=127.0.0.1:7890
https.proxy=127.0.0.1:7890

解决问题不易,转载请注明”gamemode1.com”