DEV Community

Discussion on: Git blameless?

Collapse
 
endy_tj profile image
Endy Tjahjono

Git also has git annotate command, which is very similar to git blame.

Collapse
 
fyodorio profile image
Fyodor

Webstorm uses it btw and I like it 👍

Collapse
 
defman profile image
Sergey Kislyakov

And the only difference between annotate and blame is the output. annotate should not be used, it exists only for backwards compatibility. You can get annotate-ish output with git blame -c if you want.