iOS Mac 设置git的全局代理, 取消代理.

  • 查看当前http 或者 https 的git 代理:
git config --get http.proxy
git config --get https.proxy
  • 设置当前http 或者 https的git代理:
git config --global http.proxy http://127.0.0.1:18087
git config --global https.proxy https://127.0.0.1:18087
  • 清除代理
git config --global --unset http.proxy
git config --global --unset https.proxy
  • 清除all_proxy
unset all_proxy 
unset ALL_PROXY

你可能感兴趣的:(iOS Mac 设置git的全局代理, 取消代理.)