我安装了Socat以通过HTTP CONNECT Proxy使用Git协议,然后在bin目录中创建一个名为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 (e.g., ~/bin) and then run
# chmod +x gitproxy
# git config --global core.gitproxy gitproxy
#
# More details at https://www.emilsit.net/blog/archives/how-to-use-the-git-protocol-through-a-http-connect-proxy/
# Configuration. Common proxy ports are 3128, 8123, 8000.
_proxy=proxy.yourcompany.com
_proxyport=3128
exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
然后我配置git使用它:
$ git config --global core.gitproxy gitproxy
现在我想将git重置为默认代理配置,我该怎么做?
答案 0 :(得分:167)
对我来说,我不得不补充:
git config --global --unset http.proxy
基本上,你可以运行:
git config --global -l
获取定义的所有代理列表,然后使用“--unset”禁用它们
答案 1 :(得分:89)
您可以使用以下命令删除该配置:
git config --global --unset core.gitproxy
答案 2 :(得分:17)
编辑.gitconfig文件(可能在用户的主目录中〜)并将http和https代理字段更改为仅空格
[http]
proxy =
[https]
proxy =
这在窗户中对我有用。
答案 3 :(得分:17)
在我的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已经设置好了,所以我只是取消了它们。
unset https_proxy
unset http_proxy
在我的Windows计算机上:
set https_proxy=""
set http_proxy=""
可选择使用setx在Windows上永久设置环境变量,并使用" / m"
设置系统环境setx https_proxy=""
setx http_proxy=""
答案 4 :(得分:12)
使用命令删除http和https设置。
git config --global --unset http.proxy
git config --global --unset https.proxy
答案 5 :(得分:6)
git config --global --unset http.proxy
答案 6 :(得分:0)
如果您使用Powershell命令在Windows机器上设置代理,请执行以下操作帮助我。
要取消设置代理使用: 1.打开PowerShell 2.输入以下内容:
[Environment]::SetEnvironmentVariable(“HTTP_PROXY”, $null, [EnvironmentVariableTarget]::Machine)
[Environment]::SetEnvironmentVariable(“HTTPS_PROXY”, $null, [EnvironmentVariableTarget]::Machine)
再次设置代理使用: 1.打开PowerShell 2.输入以下内容:
[Environment]::SetEnvironmentVariable(“HTTP_PROXY”, “http://yourproxy.com:yourportnumber”, [EnvironmentVariableTarget]::Machine)
[Environment]::SetEnvironmentVariable(“HTTPS_PROXY”, “http://yourproxy.com:yourportnumber”, [EnvironmentVariableTarget]::Machine)
答案 7 :(得分:0)
如果正在运行
git config --global --unset http.proxy
给出警告:
<块引用>http.proxy 有多个值
并且没有删除任何代理,然后在命令中添加“-all”:
git config --global --unset-all http.proxy
成功删除所有代理。
您可以通过以下方式检查:
git config --global --list