Skip to content

Instantly share code, notes, and snippets.

@helgejo
Last active March 7, 2016 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save helgejo/1bc153874bdce2a3e0f0 to your computer and use it in GitHub Desktop.
Save helgejo/1bc153874bdce2a3e0f0 to your computer and use it in GitHub Desktop.
GIT Proxy settings
#Command to use :
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
#change proxyuser to your proxy user
#change proxypwd to your proxy password
#change proxy.server.com to the URL of your proxy server
#change 8080 to the proxy port configured on your proxy server
#If you decide at any time to reset this proxy and work without (no proxy):
#Commands to use:
git config --global --unset http.proxy
#Finally, to check the currently set proxy;
git config --global --get http.proxy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment