Setzen Sie den Git-Proxy auf die Standardkonfiguration zurück

86

Ich habe Socat installiert, um das Git-Protokoll über einen HTTP CONNECT-Proxy zu verwenden, und dann ein Skript erstellt, das gitproxyin Ihrem bin-Verzeichnis aufgerufen wird .

#!/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

dann habe ich git so konfiguriert, dass es verwendet wird:

$ git config --global core.gitproxy gitproxy

Jetzt möchte ich git auf die Standard-Proxy-Konfigurationen zurücksetzen. Wie kann ich das tun?

Ahmed Elshafei
quelle

Antworten:

92

Sie können diese Konfiguration entfernen mit:

git config --global --unset core.gitproxy
Mark Longair
quelle
17
Funktioniert nicht für mich .. Ich habe verwendet git config --global --unset http.proxyund alles ist in Ordnung
Ghassen
git config --global --unset http.proxy hat auch bei mir funktioniert.
Mayank
172

Für mich musste ich hinzufügen:

git config --global --unset http.proxy

Grundsätzlich können Sie ausführen:

git config --global -l 

Um die Liste aller definierten Proxys abzurufen, deaktivieren Sie sie mit "--unset"

sramij
quelle
5
und für https verwenden Sie git config --global --unset https.proxy
Abhishek Dhote
2
Eine ärgerliche Sache dabei --unsetist, dass es die Abschnittsüberschrift verlässt, so dass Sie am Ende mehrere leere [http]Abschnitte haben können, die Ihre verschmutzen .gitconfig. Verwenden Sie config --global --remove-section httpdiese Option , um den gesamten [http]Abschnitt einschließlich der Überschrift zu entfernen .
Dooan
21

Bearbeiten Sie die .gitconfig-Datei (wahrscheinlich in Ihrem Home-Verzeichnis des Benutzers ~) und ändern Sie die Proxy-Felder http und https in "space"

[http]
    proxy = 
[https]
    proxy = 

Das hat bei mir in den Fenstern funktioniert.

Rajan
quelle
19

Auf meinem Linux-Computer:

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)

Ich habe herausgefunden, dass https_proxy und http_proxy festgelegt sind, also habe ich sie einfach deaktiviert.

unset https_proxy
unset http_proxy

Auf meinem Windows-Computer:

set https_proxy=""
set http_proxy=""

Verwenden Sie optional setx , um Umgebungsvariablen dauerhaft unter Windows festzulegen , und legen Sie die Systemumgebung mit "/ m" fest.

setx https_proxy=""
setx http_proxy=""
rjdkolb
quelle
12

Entfernen Sie die Einstellungen http und https mithilfe von Befehlen.

git config --global --unset http.proxy

git config --global --unset https.proxy

user2903536
quelle
0

Wenn Sie Powershell-Befehle verwendet haben, um den Proxy auf einem Windows-Computer festzulegen, hat mir das Folgende geholfen.

So deaktivieren Sie den Proxy: 1. Öffnen Sie die Powershell. 2. Geben Sie Folgendes ein:

[Environment]::SetEnvironmentVariable(“HTTP_PROXY”, $null, [EnvironmentVariableTarget]::Machine)
[Environment]::SetEnvironmentVariable(“HTTPS_PROXY”, $null, [EnvironmentVariableTarget]::Machine)

So stellen Sie den Proxy erneut ein: 1. Öffnen Sie die Powershell. 2. Geben Sie Folgendes ein:

[Environment]::SetEnvironmentVariable(“HTTP_PROXY”, “http://yourproxy.com:yourportnumber”, [EnvironmentVariableTarget]::Machine)
[Environment]::SetEnvironmentVariable(“HTTPS_PROXY”, “http://yourproxy.com:yourportnumber”, [EnvironmentVariableTarget]::Machine)
Rahul kalivaradarajalu
quelle