Jump to Navigation

Me on Twitter

  • RT @wselman: I try to not to post too many articles about @firefox but this is the best article I've seen that explains how we are working… 5 years 49 weeks ago
  • RT @MarciRobin: I bought a car today, and the dealership had me check off — with a pen, on paper — that I’m not a robot. https://t.co/x6nJ6… 5 years 50 weeks ago
  • If you want to quickly unregister from #Yahoo #Oath 321 (!) trackers : open browser console (F12) and run `var t=0… https://t.co/qzHuvEXZT0 5 years 51 weeks ago
  • Avis aux connaisseurs ;-) https://t.co/4uEtnV5x2E 5 years 51 weeks ago
  • RT @tewoz: Encore un carnet bien rempli... au suivant !!! #sketchbook #sketchnote #sketch #illustration #happyscribing #scribing #moleskine… 5 years 51 weeks ago
  • Net neutrality. Last chance? https://t.co/nsFcZFQGI7 6 years 19 hours ago
  • RT @clx_asso_fr: Fête des Libertés Numériques : Données personnelles et droits et libertés (...) https://t.co/HDCLbaj6Xo 6 years 22 hours ago
  • RT @samuelberthelot: Atelier : Apprenons ensemble à nous déGAFAiser ! - Fête des Libertés Numériques https://t.co/yX5BxApirR via @nuzzel 6 years 22 hours ago
  • @StackExchange just amazed me again https://t.co/t4PpnhdpY6 6 years 1 week ago
  • RT @Numerama: Victime d'un bug, Twitter vous recommande de changer votre mot de passe https://t.co/UlBlW5BzeJ https://t.co/EEfYsx0Oxb 6 years 1 week ago

Migrating from Subversion to Mercurial

Instructions are aimed at Windows mainly (on Linux it should be easier).

Need to migrate from Subversion to Mercurial ?

This is a quick guide to migrating an existing SVN repository to a new Hg one.

It takes 2 major steps :

  1. make a local copy of the existing SVN repository
  2. convert it to Hg

Make a local copy of the existing SVN repository

Oddly enough, this was the hardest part to figure out :

1. Create a local repository

It will mirror the existing (remote) one. I just used TortoiseSVN on an new, empty directory.

2. Initialize this repository

C:\Users\nicolas\Work>"C:\Program Files\TortoiseSVN\bin\svnsync.exe" init file:///c:/Users/nicolas/Work/ciform-bak https://plugnauth.svn.sourceforge.net/svnroot/plugnauth

On Windows you will need the following pre-revprop-change.bat file in the hooks subdirectory of your newly created repository :

@REM pre-revprop-change.bat
@ECHO OFF
 
set user=%3
 
if /I '%user%'=='syncuser' goto ERROR_REV
 
exit 0
 
:ERROR_REV echo "Only the syncuser user may change revision properties" >&2
exit 1
https://gist.github.com/1679659

You may find similar code on the net but :

  • the sample that's provided with TortoiseHg (or Tigris' distribution apparently) only contains Linux-ready scripts
  • many samples on the web work fine for common operations but not for the svnsync command we are about to use

It looked strange to me that it was not working out of the box on Windows, but I really had to create that script to make it work...

3. Start the synchronization

C:\Users\nicolas\Work>"C:\Program Files\TortoiseSVN\bin\svnsync.exe" sync --username cbonar file:///C:/Users/nicolas/Work/ciform-bak
[...]
Committed revision 92.
Copied properties for revision 92.
Transmitting file data .
Committed revision 93.
Copied properties for revision 93.

We can now work with this local SVN mirror.

 

Convert the SVN repository to a Hg one

This operation is quite simple...

1. Enable ConvertExtension

With a command line client, it should be as easy as making sure you have the following in your .hgrc or mercurial.ini file :

[extensions]
convert=

With TortoiseHg I just had to enable "convert" in the global settings (I did first on the repo settings only but it didn't work right away so I gave up) :

ConvertExtension enabled in TortoiseHg

2. Run the "hg convert" command

It might be the right time to remap author names...

C:\Program Files\TortoiseHg>hg convert file:///c:/Users/nicolas/Work/ciform-bak file:///c:/users/nicolas/Work/ciform-hg
initializing destination file:///c:/users/nicolas/Work/ciform-hg repository
scanning source...
sorting...
converting...
92 + added trunk directory : main development stream
[...]
0 + a lot of work on the ant task

 

Done. You now have a fully functional Mercurial repository with all changesets from the SVN history !

 

Successful import from SourceForge's SVN to Google Code's Hg :

Sample project imported from Sourceforge's SVN to Google code's Hg

Related links

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • E-Mail addresses are hidden with reCAPTCHA Mailhide.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <drupal5>, <drupal6>, <java>, <javascript>, <php>, <python>. The supported tag styles are: <foo>, [foo].
  • Twitter-style #hashtags are linked to search.twitter.com.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.