为什么git log显示我的密码?

Why does git log show my password?

当我键入git log时,提交的结果列表在用户名后的括号中显示我的密码,如下所示:

1
2
3
4
5
commit 5ff14f929e2244f388a41b6f711e7b9b58c57cb2
Author: herman <MyPassw0rd>
Date:   Wed Aug 29 10:00:39 2018 +0200

initial commit

为什么要这样做,我该如何修复?


那不应该是你的密码,应该是你的电子邮件。虽然我不知道您如何在电子邮件设置中输入密码,但您可以在当前项目中使用

1
git config user.email"[email protected]"

或全局使用

1
git config --global user.email"[email protected]"

此外,您还应该更改密码。