I am trying to use subrepos but cannot seem to get them to work. I am very new to Hg/Kiln, so I hope I am providing the right info.
I've created two repos in Kiln, Top and Sub. Both have a few files in the root.
On my local box, I go thru these steps:
cd Top
echo Sub=Sub > .hgsub
hg add
hg commit -mAddSub
Now I see that the Sub folder is created in my Top directory, but there are no files in it.
So I do a push to Top Then I try cloning Top somewhere else locally. I get the Sub directory, but no files (well, I do get a .hg folder, but not the files that are part of the Sub dir).
I've tried replacing the echo with:
echo Sub=https://myaccount.kilnhg.com/Repo/Repositories/Group/Sub > .hgsub
But same thing, no files in Sub.
Am I completely missing the point? Doing something wrong?