Skip to content

Instantly share code, notes, and snippets.

@iAladdin
Forked from beradrian/setproxy
Last active July 17, 2018 06:41
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 iAladdin/9d18909e35570036e4f951cf523edb75 to your computer and use it in GitHub Desktop.
Save iAladdin/9d18909e35570036e4f951cf523edb75 to your computer and use it in GitHub Desktop.
Set proxy for npm and git
# set a proxy
export HTTP_PROXY=
export HTTPS_PROXY=$HTTP_PROXY
npm config set proxy $HTTP_PROXY
npm config set https.proxy $HTTPS_PROXY
npm config set https-proxy $HTTPS_PROXY
git config --global http.proxy $HTTP_PROXY
git config --global https.proxy $HTTPS_PROXY
# unset proxy
npm config delete proxy
npm config delete https.proxy
npm config delete https-proxy
git config --global --unset http.proxy
git config --global --unset https.proxy
@iAladdin
Copy link
Author

export HTTP_PROXY=http://127.0.0.1:1087
export HTTPS_PROXY=$HTTP_PROXY
npm config set proxy $HTTP_PROXY
npm config set https.proxy $HTTPS_PROXY
npm config set https-proxy $HTTPS_PROXY
git config --global http.proxy $HTTP_PROXY
git config --global https.proxy $HTTPS_PROXY

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment