很多时候git push不好使,总是报错:Failed to connect to github.com port 443: Timed out,这是因为git不会自动使用proxy,需要配置,不多BB,直接开始介绍方法
Failed to connect to github.com port 443: Timed out [English]
一般来说,在软件高级设置中都有,我们查一下就行。这是博主的在设置中找到的配置:
于是博主的proxy服务器的地址为:127.0.0.1:41091
配置git
相关proxy
即可,http
和https
最好都配上,否则仍有可能push
失败,代码如下:
git config --global http.proxy http://127.0.0.1:41091
git config --global https.proxy https://127.0.0.1:41091
OK,现在就能随心所欲地push
了,妈妈再也不用担心Failed to connect to github.com port 443: Timed out
了,