git 代理
# 设置代理
$ git config --global http.proxy http://127.0.0.1:7890
$ git config --global https.proxy http://127.0.0.1:7890
# 取消代理
$ git config --global --unset http.proxy
$ git config --global --unset https.proxy
npm 代理
# 设置代理
$ npm config set proxy=http://127.0.0.1:7890
# 设置仓库
$ npm config set registry=http://registry.npmjs.org
# 如果需要,设置代理的用户名和密码
$ npm config set proxy http://username:password@server:port
$ npm confit set https-proxy http://username:password@server:port
# 取消代理
$ npm config delete proxy
$ npm config delete https-proxy