I have cloned an existing SVN project via git svn clone and no problem so far. But in the mean time i have created a branch in Git only (not in SVN) and now i would like to synchronize this branch back to an SVN branch (not the trunk). But the time i have created the branch is a little time ago, so is it possible to get back the information stored on that Git branch into SVN ?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You can create a new branch in Subversion using git svn branch. You might want to look at the example in this answer:

In particular, a good tip in the linked tutorial is to use the --dry-run option to svn dcommit to check that when you run the command for real, it'll be pushing to the right branch.

The Pro Git book has a clearer description of how git svn dcommit decides which svn branch to update. It sounds to me as if you should:

  • Create a new svn branch using git svn branch new-experiment
  • Create a local branch to track remotes/new-experiment with git checkout --track -b new-experiment remotes/new-experiment
  • Rebase the changes from your old git topic branch (let's suppose it's called experiment) onto new-experiment:

     git checkout experiment
     git branch original-experiment
     git rebase new-experiment
     git checkout new-experiment
     git merge experiment
    
  • Try git svn dcommit --dry-run to check that the right subversion branch will be updated
  • If so, do git svn dcommit
link|improve this answer
I want to commit the changes i made on the Git branch into a Subversion branch and NOT to the trunk. If i would like to get those changes to the trunk i can simply do a merge before. – khmarbaise Mar 11 '11 at 8:39
That wasn't at all clear from your question. I'll update my answer. – Mark Longair Mar 11 '11 at 8:45
You're right. That wasn't clear. Sorry. updated question. – khmarbaise Mar 11 '11 at 8:46
@khmarbaise: OK, I've finished updating my answer now - I hope that's more clear. I'm suggesting rebasing rather than merging so that you don't just end up with one merge commit in your subversion branch. – Mark Longair Mar 11 '11 at 9:29
I will check this at the weekend. many thanks. – khmarbaise Mar 11 '11 at 10:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.