How can I update my modified fork of a git repo if the original repo has a different format for things like whitespacing?
This is the repo that I have forked: Original Repo
They space like this:
for ( final ListenerInfo info : config.getListeners() )
Where I would instead space:
for (final ListenerInfo info : config.getListeners())
As well as this, the original repo uses 4 spaces to indent where as my modified fork uses tab.
It's difficult to merge the changes because almost everything comes up in the diff due to the extra spaces.
I could not have this issue if I changed my IDE format settings to space like their project, but I don't care for the look of the extra spacing.