用户名和邮箱地址相当于你的身份标识,是本地Git客户端的一个变量,不会随着Git库而改变。
每次commit都会用用户名和邮箱纪录。
github的contributions跟你的邮箱是有关联的。
1、查看用户以及邮箱,使用git config命令
git config user.name
git config user.email
2、修改用户名以及邮箱,使用git config 命令的–global参数
git config –global user.name “your name”
git config –global user.email “your email”
from: https://blog.csdn.net/qq_33560538/article/details/78472837