使用 git push 提交代码时报如下错误:
fatal: unable to access 'https://github.com/your_account/repo.git/': Failed to connect to github.com port 443 after 21069 ms: Timed out
这个问题之前也出现过,当时多提交几次也就提交成功了。今天又遇到这个问题了。想想有没有办法一次性解决,时不时冒出来也挺烦人的。
电脑上装了 Clash ,想着能不能把 Git 的代理设置成 Clash 的端口。
使用如下命令设置 Git 的代理:
$ git config --global http.proxy http://127.0.0.1:7890
$ git config --global https.proxy https://127.0.0.1:7890
执行完上面两个命令后再次执行git push
命令提交代码,提交成功。
使用如下命令查看 Git 配置:
$ git config -l
Windows系统按
q
键退出 Git 配置查看。