hg : how to convert a single subversion branch
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
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
精彩评论