赞
踩
出现上述的错误是因为使用了proxy代理,所以要解决该问题,核心操作就是要取消代理
查看有没有使用代理
git config --global http.proxy
取消代理设置
git config --global --unset http.proxy
解决
查看是否设置了[http]和[https]选项
如果代理设置错误了的话,使用下面语句移除代理
git config --global --unset http.proxy
git config --global --unset https.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。