Reputation: 113
Can someone please tell what '*' means on git blame annotation in Intellij IDEA?
Upvotes: 11
Views: 2914
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
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