Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list all remote repositories in Mercurial?

Tags:

mercurial

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.

like image 916
user37278 Avatar asked Aug 20 '11 21:08

user37278


1 Answers

There is only 1 path to the repository.

With a DVCS you typically clone the repository as a whole. Then you can look at it all you want locally. That is why you have received those answers in the past.

like image 143
sylvanaar Avatar answered Nov 17 '22 07:11

sylvanaar