现在用的电脑以前是别人在用,现在由我拿过来用,在git提交记录中,显示的用户名仍然是原来使用者的名字。
用户名和邮箱地址是本地git客户端的一个变量,不随git库而改变。
每次commit都会用用户名和邮箱纪录。
1、查看用户名和地址
git config user.name
git config user.email
2、修改用户名和地址
git config --global user.name "your name"
git config --global user.email "your email"