Possible Duplicate:
Converting from Mercurial to Subversion

Hi.

Does anyone know of a relatively painless way to migrate a Mercurial repo to a fresh Subversion repo?

Thank you.

link|improve this question

Of course, the snarky unhelpful question is "Why would you want to?". Unfortunately, I don't have a really good answer as Subversion has a really different notion of branch than Mercurial does. – Omnifarious Jan 21 '10 at 1:06
I want to use some of Subversion's IDE integration powers with RubyMine, that Mercurial and Git don't support. I'd prefer Git, but the IDE integration is ultimately more useful to me. – Alex Baranosky Jan 21 '10 at 1:45
Curious indeed.. usually people are moving in the opposite direction. – Ether Jan 21 '10 at 1:52
feedback

closed as exact duplicate by Jeff Atwood May 21 '11 at 22:26

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 6 down vote accepted

You may want to use the Convert Extension.

hg convert --dest-type svn mercurial_repo_name svn_repo_name

This extension is distributed with Mercurial and understands CVS, Subversion, Git, Darcs, Monotone, Bazaar, GNU Arch, Perforce and Mercurial as source formats and Mercurial and Subversion as destination formats.

link|improve this answer
I tried running this at the command line and Mercurial doesn't recognize the command... hmmm... – Alex Baranosky Jan 21 '10 at 5:13
1  
@Alex: Did you enable the extension? – gizmo Jan 21 '10 at 8:54
Yes, make sure it is enabled in your .hgrc file. – Daniel Vassallo Jan 21 '10 at 9:17
@gizmo: ahh yes, I see. Thank you for the help – Alex Baranosky Jan 22 '10 at 0:04
feedback

Use hgsubversion?

link|improve this answer
feedback

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