设置用户
git config --global user.email ""
git config --global user.name ""
1
2
设置代理
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
1
2
清除代理
git config --global --unset https.proxy
git config --global --unset http.proxy
1
2