Git log - how can I change text color of certain commits?
Answered
Hello. I'd like to make a plugin that changes the color of certain commits in the git log tree in the git plugin.
I'd like to change this:

to something similar to this:

How can I do this?
Please sign in to leave a comment.
You can register com.intellij.vcs.log.ui.highlighters.VcsLogHighlighterFactory.
<logHighlighterFactory implementation="MyFactory"/>
See https://github.com/JetBrains/intellij-community/blob/8bf3398e57ec8c7f7bf585e8f44c7a2dd2bc6243/platform/vcs-log/impl/src/com/intellij/vcs/log/ui/highlighters/MyCommitsHighlighter.java as an example.