I have a pretty non-standard SVN repo layout:
http://svn.my.company.corp/<area>/trunk/<project>
http://svn.my.company.corp/<area>/branches/<person>/<project>
http://svn.my.company.corp/<area>/tags/<project>/<tag>
I'm not terribly worried about the tags as they're not really in use that much. But I'm trying to get the branches to work correctly.
Currently I have an .hgrc
containing the following:
[hgsubversionbranch]
default = trunk/MyProject
wayne = branches/WaynesWorld/MyProject
and I run the following command:
> hg clone --layout custom --startrev 15042 svn+https://svn.my.company.corp/myarea/ MyProject
(using the --startrev
because I have a lot of irrelevant revisions) but when it "finishes" cloning it says it can't find anything.
This is a pretty new change effectively starting here, so I haven't been able to find much information aside from the docs, which don't seem to address my particular circumstance.
What am I doing wrong? Or is there a better way to do this?