git 环境设置
账户
git config --global user.name <your name>
git config --global user.email <your_email@example.com>
1
2
2
缩写
git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
git config --global alias.last "log -1 HEAD"
git config --global alias.co checkout
1
2
3
4
5
6
2
3
4
5
6
自动使用 rebase
git config --global pull.rebase true
git config --global branch.autoSetupRebase always
1
2
2
中文路径正常显示
git config --global core.quotepath false
1
文件名大小写敏感
git config --global core.ignorecase false
1
换行符 (提交时转换为LF,检出时不转换)
git config --global core.autocrlf input
1
保存用户名和密码
git config --global credential.helper store
git config --global credential.helper wincred
1
2
2
仅推送当前分支
git config --global push.default simple
1
颜色显示
git config --global color.ui true
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
1
2
3
4
5
2
3
4
5