git 设置代码:
git config --global http.proxy 'http://127.0.0.1:7890'
npm 设置代理
npm config set http-proxy 'http://127.0.0.1:7890'
git查询当前代理
git config --global http.proxy
npm 查询当前代理
npm config get http-proxy
取消代理
git config --global --unset http.proxy