重置git代理到默认configuration
我安装Socat使用Git协议通过HTTP CONNECT代理,然后我在您的bin目录中创build一个名为gitproxy
的脚本。
#!/bin/sh # Use socat to proxy git through an HTTP CONNECT firewall. # Useful if you are trying to clone git:// from inside a company. # Requires that the proxy allows CONNECT to port 9418. # # Save this file as gitproxy somewhere in your path (eg, ~/bin) and then run # chmod +x gitproxy # git config --global core.gitproxy gitproxy # # More details at http://tinyurl.com/8xvpny # Configuration. Common proxy ports are 3128, 8123, 8000. _proxy=proxy.yourcompany.com _proxyport=3128 exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
然后我configurationgit
使用它:
$ git config --global core.gitproxy gitproxy
现在,我想重置Git到默认的代理configuration,我该怎么办?
您可以使用以下命令删除configuration:
git config --global --unset core.gitproxy
对我来说,我不得不补充:
git config --global --unset http.proxy
基本上,你可以运行:
git config --global -l
获取定义的所有代理列表,然后使用“–unset”来禁用它们
编辑.gitconfig文件(可能在用户的主目录中)并将http和https代理字段更改为仅空格
[http] proxy = [https] proxy =
这对我在窗口工作。
在我的Linux机器上:
git config --system --get https.proxy (returns nothing) git config --global --get https.proxy (returns nothing) git config --system --get http.proxy (returns nothing) git config --global --get http.proxy (returns nothing)
我发现我的https_proxy和http_proxy已设置,所以我只是取消他们。
export https_proxy="" export http_proxy=""
使用命令删除http和https设置。
git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset http.proxy