提交代码到git的时候,会显示commit是由谁提交的。如果显示的提交人不对,有时候就会很尴尬。一定要把user.name
和user.email
一起改,github会用邮箱前缀作为作者名称。
修改方式如下:
// 设置全局用户名和邮箱
git config --global user.name "Author Name"
git config --global user.email "Author Email"
// 设置本地项目库
git config user.name "Author Name"
git config user.email "Author Email"