mac电脑Git Failed to connect to 127.0.0.1 port 1080: Connection refused

我是在clone项目的时候报的这个错误,因为clone网速特别慢,因为看到网上说,可以配置http.proxy来加快速度,结果速度没有加快,反而不能用了,出现了Failed to connect to 127.0.0.1 port 1080: Connection refused错误
尝试了一下办法
1.命令行删除配置
git config -l //查看配置项
在这里插入图片描述
有这两个配置项,于是想通过命令行删除掉

git config --unset http.https
git config --unset https.https
git config --unset http.proxy
git config --unset https.proxy

均没有删除掉

2.找到git的配置文件删除掉
mac电脑Git Failed to connect to 127.0.0.1 port 1080: Connection refused_第1张图片
在用户的根路径下输入

ls -a   #查看隐形文件

我们找到了.gitconfig 的文件,在这个文件里面找到并删除就可以了

你可能感兴趣的:(git,开发工具)