有一些你懂的原因有时候需要进行代理挂载

假设代理地址为http://127.0.0.1:1087

全局代理

git config --global http.proxy http://127.0.0.1:1087  
git config --global https.proxy https://127.0.0.1:1087

取消全局代理

git config --global --unset http.proxy
git config --global --unset https.proxy

只对github.com进行代理

git config --global http.https://github.com.proxy http://127.0.0.1:1087
git config --global https.https://github.com.proxy https://127.0.0.1:1087

取消对github.com的代理

git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy