git diff with one liners

If you need to review one liners which change just a few bytes, it is helpful to use a proper command:

git diff --ignore-all-space --word-diff=color  --unified=0 HEAD^1..HEAD

This will highlight the changes in color and won’t show you the lines above and below.