I want git diff to output normal, plain old diff output (not unified diff, and not context diff).
git diff
I want this:
$ diff file1 file2 2c2 &l
git difftool --extcmd=diff
or, without prompting:
git difftool --extcmd=diff --no-prompt
This is git difftool rather than git diff but it is doing what I want.
git difftool