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

I'm using TortoiseHg (Windows x32), so ConvertExtensions are discarded. There's some info on how to do this process on a Linux box (hgsvn), but 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 Mercurial?

link|improve this question

80% accept rate
feedback

5 Answers

up vote 70 down vote accepted

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.

<Enable Convert Extension w/ Tortoise Hg 2>

Many thanks to bgever for pointing out in the comments that with TortoiseHg 2.0, enabling the convert extension is easier than ever. As he says

With TortoiseHG 2.0 this has been made much simpler: Start the TortoiseHG Workbench from the Start menu. Select File --> Settings. Select Extensions from the list. Check the 'convert' checkbox and click OK. That's it! No need to try to generate the config file anymore and search it in the file system. – bgever Mar 11 at 7:56

</Enable Convert Extension w/ Tortoise Hg 2>

<Enable Convert Extension Manually>

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

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

EDIT

FYI - Tortoise Hg has migrated this file to

  • XP or older - C:\Documents and Settings\USERNAME\Mercurial.ini
  • Vista or later - C:\Users\USERNAME\Mercurial.ini

That file will be mostly empty and you'll just list what you'd like to override there. If that's what you have, simple add these two lines to the very end of the file:

[extensions]
convert =

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 =

</Enable Convert Extension Manually>

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|improve this answer
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 '09 at 22:20
1  
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. – Michael La Voie Aug 7 '09 at 2:09
This worked well for me with Mercurial V1.4.3. A 1-year-old svn repository converted very quickly with the full history intact. Many thanks! – Jonathan Webb Feb 25 '10 at 20:08
1  
Just to add - the ini file is not created on a default TortoiseHG installation. You need to apply/save some settings first or start with a blank file if you know what you doing. – Ahmad Nov 8 '10 at 5:37
7  
With TortoiseHG 2.0 this has been made much simpler: Start the TortoiseHG Workbench from the Start menu. Select File --> Settings. Select Extensions from the list. Check the 'convert' checkbox and click OK. That's it! No need to try to generate the config file anymore and search it in the file system. – bgever Mar 11 '11 at 7:56
show 2 more comments
feedback
  1. startup svn server on localhost
  2. hg convert svn://localhost/your_repo
  3. done, because svn bindings needed only for file:// protocol
link|improve this answer
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 '09 at 16:34
2  
selenic.com/mercurial/wiki/ConvertExtension Configure your mercurial.ini to enable the extension by adding following lines: [extensions] hgext.convert= – evilbloodydemon May 27 '09 at 8:07
1  
I tried using svn:// instead of file:// but it keeps asking for Python bindings – antispam May 27 '09 at 14:30
Using svn:// instead of file:// worked for me without the Python bindings. To start the svn server the command is: svnserve -r <path to repo root> -d – Petter Wigle Nov 19 '10 at 8:59
feedback

Mercurial has a built-in conversion extension for this.

link|improve this answer
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 '09 at 0:55
Use a Linux live CD or a virtual machine? – richq May 12 '09 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 '09 at 21:28
feedback

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|improve this answer
feedback

I just converted a remote SVN repo with HTTP auth to a Mercurial repo, and let me tell you, there's not a lot of documentation on how to do this. I had to download the Mercurial source and install it stand-alone, using the source package, that way the SVN bindings will work the right way.

I installed it like:

python setup.py install

Which worked just fine on my Server 2003 box. I can now convert an SVN repo the correct way, by doing something like this:

python c:\python26\scripts\hg convert <remote repo>

The documentation for ConvertExtension on the Mercurial site isn't terribly clear, but it does say this:

There's no way to install the Subversion bindings into [Mercurial's] built-in Python library. So you'll need to use a Mercurial installed on top of a stand-alone Python

So now I just use the stand-alone version for converting, and TortoiseHg for actual VCS work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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