IntelliJ annotate vs git blame -
i using intellij's annotate feature see in editor last changed line in file.
now using jgit read same annotations , differ. me seems intellij checks line has not been changed between commits , still uses old commit message. jgit not see , makes other message.
can confirm behavior of jgit blame , intellij differs? whats reason , how can force intellij behave same jgit? maybe intellij ignores whitespace changes?
i using intellij 15.0.1 , jgit 4.1.1
intellij idea not have own algorithm calculating annotations; runs standard git blame
command , parses output. there no way force behave differently.
you can find code implementing annotate command in intellij idea git plugin here.
Comments
Post a Comment