vote up 9 vote down star
3

I'm looking for a tool to migrate a couple of SVN repos to Mercurial, with history, labels and so on.

I'm Using TortoiseHg (Windows x32), so ConvertExtensions are discarted.

There's some info on how to do this process on a Linux box (hgsvn) I don't have a Linux machine available.

Can I use those python scripts on windows?

If so, what do I need to do it

Or what other tools can I use to do this process?

Basically, how can I convert an SVN project to HG?

flag

78% accept rate

4 Answers

vote up 4 vote down check

I just had to tackle this problem myself. I have a windows XP machine with a separate windows server hosting VisualSVN Server.

I also have TortoiseHG installed as well as the CollabNet Subversion Command-Line Client.

To convert a repository from SVN to HG, I followed these steps:

1) Open C:\Program Files\TortoiseHg\Mercurial.ini

2) Search for the line that begins with

[extensions]

3) Below it you'll see a list of keywords, commented out with a semicolon (;) on each line

4) Find the line that says

;convert =

and delete the semicolon so it reads

convert =

5) Open the command prompt and navigate to the directory that you'd like the new hg folder created in (the process will create a new folder called yoursvnreponame-hg in the directory that the command prompt is open to).

6) Use this command

hg convert file:///y:/yoursvnreponame

I found that the convert tool can have problems with networked repositories, so I had to map a drive to it, but this worked just fine for me.

link|flag
Selecting the answer for this question was difficult. evilbloodydemon was right when he commented in his answer to edit the config to enable the convert extension, but this answer is more clear and precise – David Lay Jul 29 at 22:20
I just wanted to mention that i tested this without the SVN command line client and it worked as well. You don't even need an SVN server functioning to do this, just access to the repository file path. – TheLameDuck Aug 7 at 2:09
vote up 0 vote down

This is in the TortoiseHg FAQ:

How can I convert a subversion repository to Mercurial?

You must install svn-win32-1.4.6 command line tools, then add them to your path. Then you must enable the convert extension. At this point, you should be able to use the 'hg convert' command to do the conversion. Please direct problems/questions about the convert extension to the Mercurial mailing list or #mercurial on irc.freenode.net.

So it is apparently possible -- I'm using Linux so I haven't tried myself.

link|flag
vote up 1 vote down
  1. startup svn server on localhost
  2. hg convert svn://localhost/your_repo
  3. done, because svn bindings needed only for file:// protocol
link|flag
Nopes, neither mercurial binaries for win32 or TortoiseHg comes with convert extensions, so "hg convert" is not even a valid command on win32. – David Lay May 23 at 16:34
1  
selenic.com/mercurial/wiki/… Configure your mercurial.ini to enable the extension by adding following lines: [extensions] hgext.convert= – evilbloodydemon May 27 at 8:07
I tried using svn:// instead of file:// but it keeps asking for Python bindings – antispam May 27 at 14:30
vote up 2 vote down

Mercurial has a built-in conversion extension for this.

link|flag
I know, It's the first thing i stumbled upon, but quoting: "Note that you can't do this with the Win32 Mercurial binaries -- there's no way to install the Subversion bindings into its built-in Python library" I'm using TortoiseHg ... – David Lay May 12 at 0:55
Use a Linux live CD or a virtual machine? – rq May 12 at 6:40
This is absolutely correct answer. I have done this using hg convert extension only (selenic.com/mercurial/wiki/…) and using the file protocol for SVN repository without pysvn extension: hg convert file:///X:/HOME/REPOS/mysvnrep newhgrep – van May 26 at 21:28

Your Answer

Get an OpenID
or

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