89

我安装了 Socat 以通过 HTTP CONNECT 代理使用 Git 协议,然后我gitproxy在你的 bin 目录中创建了一个脚本。

#!/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 重置为默认代理配置,我该怎么做?

4

8 回答 8

175

对我来说,我不得不补充:

git config --global --unset http.proxy

基本上,您可以运行:

git config --global -l 

获取所有已定义代理的列表,然后使用“--unset”禁用它们

于 2013-12-31T07:24:55.070 回答
94

您可以使用以下方法删除该配置:

git config --global --unset core.gitproxy
于 2012-06-29T16:22:45.327 回答
23

编辑 .gitconfig 文件(可能在用户的主目录中~)并将 http 和 https 代理字段更改为仅空格

[http]
    proxy = 
[https]
    proxy = 

这在窗户上对我有用。

于 2014-09-10T10:25:08.217 回答
20

在我的 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=""
于 2015-04-20T06:43:18.833 回答
12

使用命令删除 http 和 https 设置。

git config --global --unset http.proxy

git config --global --unset https.proxy

于 2016-04-25T18:05:31.737 回答
6
git config --global --unset http.proxy
于 2016-08-09T01:45:28.623 回答
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)
于 2018-04-10T10:33:40.390 回答
0

如果运行

git config --global --unset http.proxy

发出警告:

http.proxy 有多个值

并且没有删除任何代理,然后在命令中添加“-all”:

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

成功删除所有代理。

您可以通过以下方式进行检查:

git config --global --list
于 2021-06-08T09:43:27.503 回答