Migration from Mercurial to Subversion

Possible duplicate:
Convert from Mercurial to Subversion

Hey.

Does anyone know a relatively painless way to port a Mercurial repository to a new Subversion repo?

Thanks.

+5
source share
2 answers

You can 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.

+7
source
+2

All Articles