I'm just looking for a Mercurial command that can list the available repositories in the remote parent repository. When I used subversion, this was simple, as in:
svn ls httpx://server/repos/002/trunk
svn ls httpx://server/repos/002/trunk/blort
svn ls httpx://server/repos/002/trunk/blort/fubar
And then I could use ``svn co'' to fetch as much or as little of some directory tree as I wished.
However, I can't find the analog to this in Mercurial. All the tutorials seem to expect you to know precisely the path to the remote repository and don't discuss anything about even some top level browsing of the remote repository.
Thanks.
httpx://server/repos
, 002/ and deeper are paths inside of the repository. The difference between SVN and mercurial is that SVN allows to checkout subtrees of a tree, while mercurial always takes the full tree. – Lodger