git config --global http.proxy socks5://127.0.0.1:7070
//首先,设置默认代理,也可以理解为清除代理
git config --global --unset http.proxy
git config --global --unset https.proxy
//设置代理
git config --global http.proxy "你需要的代理"
git config --global https.proxy "你需要的代理"
————————————