赞
踩
curl: (7) Failed to connect to 127.0.0.1 port 4567: Connection refused
使用git从远程仓库下载代码出现上述的错误是因为使用了proxy代理,所以要解决该问题,核心操作就是要取消代理
查询是否使用代理:git config --global http.proxy
注: 我在使用该方法并没有返回任何信息,也没有返回代理使用,当然啦,你可以尝试,毕竟好多人都是用这种方法查看的。还有,你可以试试 git config --global --unset https.proxy
在http协议后面加s试一下
env|grep -I proxy
我是用这个命令查询出有在使用代理的,返回信息如下:
从上面可以看出,有很多协议占用了这个端口,有http、ftp、all、socks、https、no
- $ git config --global --unset http.proxy
- $ git config --global --unset https.proxy
(我尝试了该方法,并没有取消代理,代理依然存在,当然啦,你可以尝试一下)
- export http_proxy=""
- export https_proxy=""
- export HTTP_PROXY=""
- export HTTPS_PROXY=""
(我尝试了该方法,并没有取消代理,代理依然存在,当然啦,你可以尝试一下)
- $ unset http_proxy
- $ unset ftp_proxy
- $ unset all_proxy
- $ unset https_proxy
- $ unset no_proxy
把上面出现的所有使用代理的协议,全部都取消掉,然后问题成功解决
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。