Git 全局配置

git config --global user.name "FirstName LastName"
git config --global user.email [email protected]
git config --global core.autocrlf true (DO NOT SET ON UNIX)
git config --global push.default simple
git config --global http.sslVerify false
git config --global http.postbuffer=1048576000

猜你喜欢

转载自blog.csdn.net/weixin_42713970/article/details/86577276