git svn rebase всегда конфликтует с моими собственными коммитами

Я использую git svn для работы с клиентом, у которого есть svn-репозиторий (наши материалы находятся на github) .

Итак, я следую инструкциям и делаю git svn rebase, а затем git svn dcommit

Это сработало с самого первого раза, но с тех пор rebase всегда конфликтует почти при каждом коммите. Похоже, он не понимает, какие коммиты мои, и жалуется, что вещи конфликтуют. Каждый раз, когда мне нужно выполнить git rebase --пропустите мой путь, пока он не пройдет их и не применит мои последние коммиты. Он никогда не выясняет, где я был в последний раз, когда выполнял перебазирование (что, как я полагаю, должно произойти).

Прежде всего... почему? Тогда можно ли это как-то обойти?

First, rewinding head to replay your work on top of it...
Applying: Deleting their old build management stuff as its pretty crappy. Will re-build at some point.
Using index info to reconstruct a base tree...
Falling back to patching base and 3-way merge...
No changes -- Patch already applied.
Applying: Added some error checking around Android specific calls
Using index info to reconstruct a base tree...
<stdin>:16: space before tab in indent.
            Android.hideKeyboard();
<stdin>:31: space before tab in indent.
                    Android.launchNewAccount();
warning: 2 lines add whitespace errors.
Falling back to patching base and 3-way merge...
CONFLICT (modify/delete): src/LoginForm.js deleted in HEAD and modified in Added some error checking around Android specific calls. Version Added some error checking around Android specific calls of src/LoginForm.js left in tree.
Auto-merging src/ChildPanel.js
CONFLICT (content): Merge conflict in src/ChildPanel.js
Failed to merge in the changes.
Patch failed at 0002 Added some error checking around Android specific calls

When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To check out the original branch and stop rebasing run "git rebase --abort".
8
задан Bob Spryn 13 March 2012 в 22:29
поделиться