Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
scripts:enable_proxy [2014/11/12 09:35] – created yehuda | scripts:enable_proxy [2022/01/03 16:03] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | <source | + | <code bash> |
git config --global https.proxy " | git config --global https.proxy " | ||
export http_proxy=" | export http_proxy=" | ||
Line 5: | Line 5: | ||
npm config set proxy " | npm config set proxy " | ||
npm config set https-proxy " | npm config set https-proxy " | ||
- | </source> | + | </code> |
+ | |||
+ | <code bash> | ||
+ | git config --global | ||
+ | unset http_proxy | ||
+ | unset https_proxy | ||
+ | npm config delete proxy | ||
+ | npm config delete https-proxy | ||
+ | </code> | ||