一、Git代理设置
1.查看
1 | git config -l |
2.设置
1 | git config --global http.proxy 'socks5://127.0.0.1:1080' |
3.取消设置
1 | git config --global --unset http.proxy |
二、npm代理设置
1.查看
1 | npm config list |
2.设置
1 | npm config set proxy=http://localhost:1080 |
3.取消设置
1 | npm config delete proxy |
三、使用nrm
1 | //1.先安装nrm工具 |