In my git log, I have 2 commits. How can I generate the difference – ignoring spaces – between them?
$ git log
commit e5640171f391fdf479fa14fab0da6628efed1fa6
Author: test <test@mycompany.com>
Date: Mon Jul 13 11:41:02 2009 -0700
Fix Bug 1.
commit 0984e27b75f480da8b8c4ce2399bf877c557a78d
Author: test <test@mycompany.com>
Date: Tue Jul 7 14:50:26 2009 -0700
Fix Bug 2.
-w is shorthand for –ignore-all-space
More important is knowing how I found out:
This allowed me to see the various options with explanations.