+4
Blame/Investigate: allow specifying a list of revisions for git blame to ignore
A classic problem in large repositories is when someone reformats the code, touching most lines in every file. This makes git blame a lot less useful, as all roads lead to Rome (the revision where the reformatting was done).
git blame, however, can ignore a list of revisions:
> git blame --ignore-revs-file .git-blame-ignore-revs
Adding this to SmartGit's Blame and Investigate views would be very handy.
Customer support service by UserEcho
Both, Blame and Investigate are dialog-less operations and should stay so; adding some menu item like "Recompare with blame-ignore-revs" also isn't elegant. But I agree that Blame and Investigate should honor "blame.ignoreRevsFile" configuration.
Note that the overall problem seems to be less pressing for SmartGit because both, Blame and Investigate, already allow to go to the previous line once you find yourself located at a reformat commit.
Clearly there shouldn't be a new, intermediate dialog whenever you choose Blame or Investigate.
So, two options:
I would really appreciate if SmartGit would honor theblame.ignoreRevsFile config.
As someone who frequently does bulk reformat changes in our repos I'm always held responsible for all the bad things my team commits.
Also I noticed that during a blame people just read committer, they never read the commit message :-(