{{tag>git HTTP}} # Git derrière un proxy HTTP Source : http://stackoverflow.com/questions/783811/getting-git-to-work-with-a-proxy-server ~~~bash git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080 ~~~ Effacement de la conf proxy ~~~bash git config --global --unset http.proxy ~~~ Vérif conf Finally, to check the currently set proxy: ~~~bash git config --global --get http.proxy ~~~