I would like that whenever I run git diff
or git show
it silently automatically appends --ignore-all-space
. Is there a way to do this? I know that I can create aliases like this:
[alias] sh = show --ignore-all-space di = diff --ignore-all-space
But I would like to use the diff
and show
commands directly.