郑州做网站zztuotian,网站优化的内容,中国十大建筑公司,深圳网站建设公司联系问题#xff1a;
开启了翻墙代理工具#xff0c;拉取代码时报错#xff1a;fatal: 无法访问 xxxx : Failed to connect to github.com port 443: 连接超时
解决#xff1a;
0#xff0c;取消代理仍然无法拉取
1#xff0c;查看控制面板-网络与Internet-代理#xff…问题
开启了翻墙代理工具拉取代码时报错fatal: 无法访问 xxxx : Failed to connect to github.com port 443: 连接超时
解决
0取消代理仍然无法拉取
1查看控制面板-网络与Internet-代理看看现在计算机走的代理端口是哪个比如我这次是7890
2gitbash里设置
// 设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890 问题
曾经设置过git的代理现在提交代码到github报错“Failed to connect to 127.0.0.1 port 7890: Connection refused”是由于设置了代理造成的把代理取消就能解决。
解决
// 查看代理
git config --global http.proxy// 取消代理
git config --global --unset http.proxy