git开启代理和关闭代理

  1. git 开启代理
git config --global http.proxy http://127.0.0.1:41091
git config --global https.proxy http://127.0.0.1:41091

  1. git 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

你可能感兴趣的:(git开启代理和关闭代理)