views:

39

answers:

2

Long story short, I have a git repo with several branches, and I would like to move it to an SVN repo while maintaining all of the branches and commit history.

So far I have not had much luck, most of the methods I have found do not migrate the branches as I would expect. (they are combined, or ignored, or eaten by a grue)

I was planning on using git-svn (git locally, SVN remote) and from the documentation I got the impression that using Git with SVN in this manner was very possible.. . but no idiot proof tutorial was provided!

Is this possible? if so how? If not what is it about git/svn do I not understand?

+2  A: 

Did you check git2svn as detailed in question "Cloning a Non-Standard Svn Repository with Git-Svn"?
It could help for this kind of conversion.

VonC