用户名和邮箱
#用户名
git config --global user.name "USERNAME"
#邮箱
git config --global user.email "EMAIL"
保存凭证
#home目录下 windows是 C:\Documents and Settings\Administrator ,Linux是~/
vim .git-credentials
#然后输入
https://{username}:{password}@github.com #用你的用户名和密码替换
#保存文件
:wq
#添加config项
git config --global credential.helper store
pull默认使用rebase
git config --global pull.rebase true
换行符
#windows
git config --global core.autocrlf true
#linux/mac
git config --global pull.rebase true