I want git diff
to not show BOM changes.
Such changes typically show up as <feff>
in the diff:
-<feff>/*^M
+/*^M
How can I make git diff
to behave this way?
Preferably with a command-line parameter.
git --ignore-all-space
(aka git -w
) does not do the trick.
I am on Mac OS X if that matters.
git diff -w
(--ignore-all-space
) work better? – Intervale