IntelliJ IDEA - Asterisk after author's name in git log

Every change in GIT (and in the most of modern VCS's) has an author and a committer. The Log shows an author because we respect authorship even if the author of changes doesn't have access to the repo or isn't able to commit code by himself.

Asterisk on the author's name in the Log means that this commit was created by the described person, but was applied by someone else.

Here is an illustration of how it looks: enter image description here

There are some common cases when this happens:

  • you cherrypicked someone else's commit
  • you rebased branch with someone else's commits
  • you applied .patch file mailed to you by someone else
  • you merged the pull-request via GitHub UI - GitHub does it with its own user but leaves authorship to you.

It indicates that commit is the most recent commit to modify the file.

Annotations for lines modified in the current revision, are marked with bold type and an asterisk.

https://www.jetbrains.com/help/idea/investigate-changes.html#annotate