赞
踩
不知道为什么,我在新电脑上安装好 Git 后,它默认设置了错误的代理,导致我无法从 github 上克隆项目。去网络上搜索了一些教程后,被告知使用如下命令来取消代理:
- git config --global --unset http.proxy
- git config --global --unset https.proxy
但是取消后,Git仍然无法正常工作,且运行取消命令时给出警告信息 "warning: http.proxy has multiple values"。经历了一番搜索后发现原因是设置了多个代理时,无法通过上述命令取消(至少无法取消所有)代理。
为解决这个问题,需要使用以下命令来一次性取消所有代理设置:
- git config --global --unset-all http.proxy
- git config --global --unset-all https.proxy
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。