为什么 git 日志显示我的密码?
Why does git log show my password?
当我输入 git log
时,生成的提交列表会在用户名后的括号 <> 中显示我的密码,如下所示:
commit 5ff14f929e2244f388a41b6f711e7b9b58c57cb2
Author: herman <MyPassw0rd>
Date: Wed Aug 29 10:00:39 2018 +0200
initial commit
为什么会这样,我该如何解决?
这不应该是你的密码,它应该是你的电子邮件。虽然我不知道你是如何在电子邮件设置中输入密码的,但你可以在当前项目中使用
设置你的电子邮件
git config user.email "email@example.com"
或全局使用
git config --global user.email "email@example.com"
此外,您应该更改密码。
当我输入 git log
时,生成的提交列表会在用户名后的括号 <> 中显示我的密码,如下所示:
commit 5ff14f929e2244f388a41b6f711e7b9b58c57cb2
Author: herman <MyPassw0rd>
Date: Wed Aug 29 10:00:39 2018 +0200
initial commit
为什么会这样,我该如何解决?
这不应该是你的密码,它应该是你的电子邮件。虽然我不知道你是如何在电子邮件设置中输入密码的,但你可以在当前项目中使用
设置你的电子邮件git config user.email "email@example.com"
或全局使用
git config --global user.email "email@example.com"
此外,您应该更改密码。