如何在Magit上重置用户信息?

时间:2018-10-06 02:13:53

标签: github magit

我通过Magit从Spacemacs推进了一个项目。它询问用户名,电子邮件,密码。但是我一定打错了。 它显示了具有相同用户名的人。但是我找不到在Magit上更改用户信息的方法。

enter image description here

1 个答案:

答案 0 :(得分:1)

  

这是因为错过了git设置。

您可以使用(for Git 2.8 and more

避免这种情况
git config --global user.useConfigOnly true

这样,如果您在未定义user.name / user.email的情况下尝试提交,则会收到一条错误消息(而不是默认的元数据,一旦推送将无法正确显示)

no name was given and auto-detection is disabled
no email was given and auto-detection is disabled