最近在提交代码到GitHub,一直提示提交失败Push: unable to access 'https://github.com/username/project.git/': Failed to connect to github.com port 443 after 21140 ms: Couldn't connect to server
,我以为是网络太差了,直接使用代理软件,还是同样的提示, 所以咨询了一位优秀的前端开发kaimo,才知道需要git配置一下代理
针对自己的情况,如果自己有fq代理软件,直接设置ip加端口即可,如果没有需要自己去查找一下fq代理软件
我们在自己的项目里git bash,打开cmd窗口
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
注意:
如果想取消代理配置,可以使用命令:
git config --global --unset http.proxy
git config --global --unset https.proxy