I installed mercurial-server on one of my machines, cloned my project there, it has 3 subrepos, and when I try to clone it back to another location I get an error:

remote: mercurial-server: Cannot create repo under existing repo

abort: no suitable response from remote hg!

So I'm starting to think that mercurial-server doesn't handle subrepo.

Any clue?

link|improve this question

80% accept rate
feedback

5 Answers

The new version released in December 2010 does support sub repos.

link|improve this answer
feedback

Their changelog never mentions subrepos.
Nor does their documentation.

So it is quite possible they don"t support that feature yet, but I wouldn't know for sure.

link|improve this answer
feedback
up vote 1 down vote accepted

I got an answer from the developers of mercurial-server saying that they don't support it yet.

link|improve this answer
The most recent versions of mercurial-server do support subrepos. – Paul Crowley Sep 6 '11 at 16:40
feedback

This post says that disabling the "checkParents" code will enable support for subrepos.

EDIT

I've tried using it recently and it works just fine even without changing any default settings.

link|improve this answer
feedback

I found that you need to set up the locations for any subrepos inside the "mercurial.ini" settings file.

For a subrepo named "mysubrepo", you need to add the line

[subpaths]
mysubrepo = ssh://hg@myserver/subrepolocation
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.