Restablecer el proxy git a la configuración predeterminada

87

Instalé Socat para usar el protocolo Git a través de un proxy HTTP CONNECT, luego creo un script llamado gitproxyen su directorio 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

luego configuré git para usarlo:

$ git config --global core.gitproxy gitproxy

Ahora quiero restablecer git a las configuraciones de proxy predeterminadas, ¿cómo puedo hacer eso?

Ahmed Elshafei
fuente

Respuestas:

92

Puede eliminar esa configuración con:

git config --global --unset core.gitproxy
Mark Longair
fuente
18
No funciona para mí. Usé git config --global --unset http.proxyy todo está bien
Ghassen
git config --global --unset http.proxy también funcionó para mí.
Mayank
173

Para mí, tuve que agregar:

git config --global --unset http.proxy

Básicamente, puedes ejecutar:

git config --global -l 

para obtener la lista de todos los proxy definidos, y luego use "--unset" para deshabilitarlos

sramij
fuente
5
y para https use git config --global --unset https.proxy
Abhishek Dhote
2
Una cosa molesta --unsetes que deja el encabezado de la sección, por lo que puede terminar con múltiples [http]secciones vacías contaminando su .gitconfig. Úselo config --global --remove-section httppara eliminar toda la [http]sección, incluido el encabezado.
jueves
21

Edite el archivo .gitconfig (probablemente en el directorio de inicio del usuario ~) y cambie los campos de proxy http y https a solo espacio

[http]
    proxy = 
[https]
    proxy = 

Eso funcionó para mí en las ventanas.

Rajan
fuente
20

En mi máquina 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)

Descubrí que mi https_proxy y http_proxy están configurados, así que simplemente los desactivo.

unset https_proxy
unset http_proxy

En mi máquina con Windows:

set https_proxy=""
set http_proxy=""

Opcionalmente, use setx para configurar las variables de entorno de forma permanente en Windows y configure el entorno del sistema usando "/ m"

setx https_proxy=""
setx http_proxy=""
rjdkolb
fuente
12

Elimine la configuración http y https mediante comandos.

git config --global --unset http.proxy

git config --global --unset https.proxy

usuario2903536
fuente
0

Si ha utilizado los comandos de Powershell para configurar el Proxy en la máquina con Windows, hacer lo siguiente me ayudó.

Para desactivar el uso del proxy: 1. Abra powershell 2. Ingrese lo siguiente:

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

Para volver a configurar el proxy, use: 1. Abra powershell 2. Ingrese lo siguiente:

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