How can I set the option ignore-space-change
for all merges using git config
?
I could perhaps use an alias on merge
, but since I want that setting to apply to git stash pop
, git stash apply
, git pull
and git merge
, and others if any, I'd like a cleaner way than setting up many aliases (I don't even know if I could set up an alias stash
for the subcommands).
I looked in the docs, but couldn't find the configuration option to use.