在取消设置http.proxy

时间:2017-05-13 07:53:51

标签: git version-control

我在Windows上使用git。几天前,我为git设置了一个代理:

git config --global http.proxy http://......
git config --global https.proxy http://.....

今天,我的代理服务器已关闭。我必须解开它。但git客户端仍然尝试在未设置后连接代理。

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

错误是

  

致命:无法访问“https://github.com/gogits/gogs.git/”:失败   连接到代理服务器端口8080:访问不良

任何人都知道如何解决这个问题。

1 个答案:

答案 0 :(得分:2)

您可能在本地配置中拥有代理,请尝试运行以下命令:

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

验证配置文件中设置的变量及其值,包括本地和全局:

git config --global --list
git config --local --list