I've got a checkout of a project on my machine to which I've added subrepo. Works fine on that checkout, but when I clone the project in other location it doesn't clone subrepos. .hgsub
is pushed to default
.
Dir structure is
./projA/ ## - the main project directory
./projA/lib/projB/ ## - the sub-repo project directory
And .hgsub
:
lib/projB = [hg]ssh://hg@bitbucket.org/username/projB
Now when I do hg clone ssh://hg@bitbucket.org/username/projA
it makes no attempts whatsoever to fetch subrepo. What am I missing?