I'm at my wit's end here with a git-to-svn setup I just created. I've setup a repository with two remote repos, one svn based and the other a remote git:
svn-remote.svn.url=https://subversion.acme.com/svn/sales/portal/trunk
svn-remote.svn.fetch=:refs/remotes/git-svn
remote.origin.url=mottinger@git.tkknow.com:/gitroot/acme-gtm-2-0.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
Once I set this up, I was able to move commits from the git repo to the svn repo like this:
git fetch origin
git rebase origin/master (linearizes commits to svn)
git svn rebase
git svn dcommit
Everything was all fine, until I decided to test how I'd handle conflicts. I created a foo.dat file and added a line in it from the svn side and made a corresponding file on the git side with a line indicating something to the effect it was from git. I ran git fetch origin and git rebase origin/master to bring the foo.dat file down. That was fine, but an attempt to run git svn rebase resulted in a conflict. Perfectly expected, so I go through the steps of editing the conflict and using svn rebase --continue. But then the chaos begins. After an attempt to run git rebase origin/master to pull down other changes from the repo, I conflict on that same foo.dat file. I've gotten it into a state where if I resolve the conflict for svn, it'll fail for git and vice versa. The most frustrating thing of all, I can't seem to find a way to get the repositories back into a state to revert this mess. For now, I have the luxury of being able to completely blow away repos and try again, but in the future as developers use this, if I get myself into a state like this I'd really like to know how to get out. Any tips on what's going on and how to end the constant merges would be hugely appreciated.
Thanks!
git rebase origin/masterthere? origin/master is a normal git branch, not git-svn branch, right? – vadishev Oct 2 '12 at 14:14