file-diffs

Is there a file diff tool that allows for exceptions?

We currently use Beyond Compare 3.0 and I am quite pleased with it. However, it would be great if I could easily specify an exclusion for a specific one-time case. This is needed when I am doing a code review of some refactoring. For instance: Old code doSomething(ConstantsInterface.FOOBAR); New code: doSomething(BetterEnumeration.F...

Suppressing diffs for deleted files in git

Hi all, I want to get a quick overview of the local changes in my repository, but I don't want a diff that shows deleted files, since every single line is a minus. Basically, I want something like 'git diff HEAD <list of modified files only>'. In an ideal world, it would be preceded by the list of deleted and added files, but not show ...