git配置

1
2
3
4
5
6
7
8
9
10
#配置用户名和邮箱
git config --global user.name
git config --global user.email

#中文路径和文件名乱码
git config --global core.quotePath false

#修改commit编码方式
git config --global i18n.commitEncoding utf-8
git config --global i18n.logOutputEncoding