Como remover o proxy do git Eu tento, mas ainda mostrando o erro como resolvê-lo?

1

Meu git está preso sempre que eu tento puxar, empurrar ou clonar. Eu removo o proxy, mas ainda não tenho resposta positiva do git.

A última vez que usei este comando para proxy:

git config --global http.proxy 172.16.0.2:8080

Eu experimento estes comandos:

git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy

mas ainda recebendo essa resposta quando eu clonar o repositório ou quiser puxar ou empurrar!

badar:DSA Lab Tasks$ git clone https://github.com/badarshahzad/SEGP_Group10.git
Cloning into 'SEGP_Group10'...
fatal: unable to access 'https://github.com/badarshahzad/SEGP_Group10.git/': Failed to connect to 172.16.0.2 port 8080: Connection timed ou
    
por badarshahzad 18.10.2016 / 20:00

4 respostas

1

Depois de usar esses comandos

git config --global --unset http.proxy
git config --global --unset https.proxy
git config --global --unset core.gitproxy

Estes dois comandos funcionam para mim depois - pôr o proxy por cima

    
por badarshahzad 18.10.2016 / 20:54
1

Use este comando para obter a lista de todos os proxy definidos e, em seguida, use --unset para desativá-los.

git config --global -l

Desmarque com o seguinte comando

git config --global --unset http.proxy
    
por Pooja Khatri 22.01.2018 / 15:23
0

O alvo não existe: você pode ver os que fazem aqui

O servidor respondeu com um erro 404:

404 Not Found

The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable. 

Origem do significado do erro 404: link

    
por Elder Geek 18.10.2016 / 20:06
0

você também precisa excluir as variáveis de ambiente abaixo:

HTTPS_PROXY = link
HTTP_PROXY = link

    
por Rodrigo J. R. Firmino 21.05.2018 / 14:48