git 代理配置

http的代理
## 设置
git config --global http.proxy "http://192.168.9.8:1081""
git config --global https.proxy "http://192.168.9.8:1081""
## 取消
git config --global --unset http.proxy
git config --global --unset https.proxy
为GitHub指定socket5代理
## 设置
git config --global http.https://github.com.proxy 'socks5://192.168.9.8:1080"'
## 取消
git config --global --unset http.https://github.com.proxy
查看git配置
git config -l