配置用户信息
git config --global user.name "LinHaiming"git config --global user.email lhming23@outlook.com# 检查配置信息git config --list# 长期存储 http/https 密码git config --global credential.helper store
github 走代理
#只对github.comgit config --global http.https://github.com.proxy socks5://127.0.0.1:10808#取消代理git config --global --unset http.https://github.com.proxy
