What does an asterisk mean in git blame for IntelliJ IDEA?

Viewed 792

Can someone please tell what '*' means on git blame annotation in Intellij IDEA?

Screenshot

2 Answers

As stated by the official source

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

The documentation says:

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

But I think it is important to clarify that this refers to lines modified in the current revision of the file, not the current revision of the repository.

I think a clearer way to phrase this would be:

Annotations for the most recently changed lines in the file are marked with bold type and an asterisk.

Related