views:

51

answers:

1

I have a subversion repository, where each branch is a separate project. I would like to change this architecture, and to gradually move to mercurial. How can I convert a single branch of a subversion repo into an hg repository.

hg version : 1.01

+3  A: 

You could use the Convert Extension (see also this SO question), and convert directly the project/branch you need

hg convert http://url/to/svn/myproject/mybranch
VonC
+1 , The only time this gets strange is when the trunk happened to move around in the SVN repo. If that happens, you end up with multiple heads.
Tim Post
Thank you, I though I would have to mess with a filemap file.
shodanex