git 名字和邮箱忘记了?需要修改?

image.png

如果这里作者你发现不对,可能公司要求是用公司的账户,但是你却是用的个人账户,那么怎么查询和修改呢,请看下面:

在终端输入
git config --global user.name

会打印当前的name

git config --global user.email

打印当前的email
修改就在后面加上要修改的名字、邮箱就行了

git config --global user.name "mingzi"
git config --global user.email  "[email protected]"

你可能感兴趣的:(git 名字和邮箱忘记了?需要修改?)