Home > database >  why the git author contains password in Intellij Idea
why the git author contains password in Intellij Idea

Time:06-15

When I using Intellij Idea to develop, the author comment show the committer's password. Why the password show in the author comment when the author commit code? how to hide the password? The password looks like :

enter image description here

the red area was the committer's password.

CodePudding user response:

The IDE shows the Git commit author here. So it seems that the commit's author name contains the password string.

You can click the author name in the editor to show the commit list in the editor's left gutter, then click that related commit in the editor's left gutter, check the detailed commit's user name there to see that some password was used in the commit author name there.

enter image description here

  • Related