配置git信息
git config user.name 李四;
git config user.email xx@163.com;
git config --global user.email "xx@163.com"
git config --global user.name "owl38383"
github代理
cd myproject
git config http.proxy http://127.0.0.1:10809
配置项目代理
配置 .git/config
[http]
proxy = socks5://127.0.0.1:10808
[https]
proxy = socks5://127.0.0.1:10808
评论区