在使用命令行工作时, 有时我们需要通过代理访问网络资源, 这就需要先进行代理设置.
比如你的代理ip为127.0.0.1, 协议为http, https (端口为10809) 及 socket5 (端口为10808).
CMD
- 设置
set http_proxy=http://127.0.0.1:10809
set https_proxy=https://127.0.0.1:10809
- 取消
set http_proxy=
set https_proxy=
NPM
- 设置
npm config set proxy=http://127.0.0.1:10809
npm config set https-proxy=http://127.0.0.1:10809
- 取消
npm config delete proxy
npm config delete https-proxy
Git
- 设置
git config --global http.proxy 'socks5://127.0.0.1:10808'
git config --global https.proxy 'socks5://127.0.0.1:10808'
- 取消
git config --global --unset http.proxy
git config --global --unset https.proxy
SSH
set all_proxy=socks5://127.0.0.1:10808