如何重置 Magit 上的用户信息?
How can I reset user information on Magit?
我通过 Magit 从 Spacemacs 推送了一个项目。它询问用户名、电子邮件、密码。但我一定是打错了。
它表明具有相同用户名的人被推到一起。但是我找不到在 Magit 上更改用户信息的方法。
This was because git setting was missed.
您可以使用 (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
我通过 Magit 从 Spacemacs 推送了一个项目。它询问用户名、电子邮件、密码。但我一定是打错了。 它表明具有相同用户名的人被推到一起。但是我找不到在 Magit 上更改用户信息的方法。
This was because git setting was missed.
您可以使用 (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