Reputation: 17
I have tried all of the suggestions I can find on SO but nothing quite works. I want to periodically move an active Git repo over to an existing, but currently empty, SVN repo. Following the higher rated suggestions from SO the best I can do is check out the Git repo into my SVN trunk but then I end up with a huge number of merge issues as I try to rebase (as per the suggestions on can find).
What do I need to do to periodically move my Git master branch into this SVN repo while preserving my Git history?
Upvotes: 0
Views: 60
Reputation: 28981
As an option - put it into github: https://help.github.com/articles/support-for-subversion-clients/
Upvotes: 0
Reputation: 2934
git-svn
is an okay solution. SubGit is a much better solution in my experience. I suggest you start by looking at the translation limitations to see if any of those limitations will affect the ability to translate your repository.
From the rebasing issues you describe it sounds like you need to focus on your branch management strategy.
Upvotes: 1