Ruslan
Ruslan

Reputation: 113

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

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

Screenshot

Upvotes: 11

Views: 2914

Answers (2)

Code Commander
Code Commander

Reputation: 17280

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.

Upvotes: 15

cheseaux
cheseaux

Reputation: 5315

As stated by the official source

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

Upvotes: 8

Related Questions