Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Migrating from Mercurial to Subversion [duplicate]

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.

like image 884
Alex Baranosky Avatar asked Jan 21 '10 00:01

Alex Baranosky


2 Answers

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.

like image 94
Daniel Vassallo Avatar answered Oct 23 '22 17:10

Daniel Vassallo


Use hgsubversion?

like image 37
RyanWilcox Avatar answered Oct 23 '22 16:10

RyanWilcox