git svn windows linux espaço em branco problemas

Eu uso o git (com git-svn) no linux e um colega usa o svn no windows.

Muitas vezes, o git relata problemas de espaço em branco. De fato, ele falha em confirmar uma história linear por causa desses problemas e cria conflitos de mesclagem.

Qual é a maneira mais simples de configurar o svn / git e o git-svn no Windows e Linux, para que agora haja problemas de espaço em branco?

A seguir, é apresentado um conflito de mesclagem relatado, em um histórico linear no mestre:

error: patch failed: frontend/templates/frontend/base.html:38
error: frontend/templates/frontend/base.html: patch does not apply
error: patch failed: frontend/templates/frontend/footer.html:1
error: frontend/templates/frontend/footer.html: patch does not apply
error: patch failed: frontend/templates/frontend/index.html:1
error: frontend/templates/frontend/index.html: patch does not apply
Using index info to reconstruct a base tree...
<stdin>:15: trailing whitespace.

<stdin>:20: trailing whitespace.
          <a href="{% url frontend_index %}">
<stdin>:22: trailing whitespace.
          </a>
<stdin>:24: trailing whitespace.
        <span class="companyname">
<stdin>:25: trailing whitespace.
          <a href="{% url frontend_index %}">
warning: squelched 74 whitespace errors
warning: 79 lines add whitespace errors.
Falling back to patching base and 3-way merge...
Auto-merging frontend/templates/frontend/base.html
CONFLICT (content): Merge conflict in frontend/templates/frontend/base.html
Auto-merging frontend/templates/frontend/index.html
CONFLICT (content): Merge conflict in frontend/templates/frontend/index.html
Failed to merge in the changes.
Patch failed at 0001 template changes

When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To restore the original branch and stop rebasing run "git rebase --abort".

Como resolver os problemas de espaço em branco?

questionAnswers(1)

yourAnswerToTheQuestion