I am trying to do a git rebase to migrate data to a disconnected SVN clone branch.
Let's say I am trying this with the SoundManager2 repo from Github.
About the first 20 or so of the rebase actions will work fine. After that it will start hitting some conflicts. Most of them resolve automatically, but regardless it makes me stop and continue.
In this case, I don't care what the conflict is. I just want to overwrite any conflicting files with whatever the latest file is. I've tried to get different merge strategies work, but have had no success.
Any ideas or thoughts? Thanks.
masterontogit-svn. For whatever reason, running the rebase produces a bunch of merge conflicts even thoughgit-svnis a clean slate. I think what I want is the latest from the branch I'm rebasing. I'd like to preserve all the history while doing the rebase if possible. – jocull May 10 '11 at 2:48git am ../patches/*causes the same kind of conflicts that I am seeing with the rebase. – jocull May 10 '11 at 2:49git rebase -X theirs... – Benjol May 10 '11 at 5:30