Question is basically in the title. Is there any way to just have a list of files and directories in a remote repo fetched/displayed? I am asking, because I have a large repo and I just need a to glance (programmatically) at a list of directory names - not the whole repo (which is about 1G).

link|improve this question

Do you want to access the list programmatically? If not you can just browse the web interface, no? – Matt Ball Aug 1 '11 at 18:19
Yes, programmatically - otherwise web interfaces are just fine. – miku Aug 1 '11 at 18:20
You could run a command over ssh. Is that an option? – Faheem Mitha Aug 1 '11 at 19:32
feedback

1 Answer

hg locate lists the content of a repository, filters can be applied on demand.

link|improve this answer
Yes, this works locally - but I'm talking about listing only the files of a remote repository. – miku Aug 1 '11 at 18:26
@miku: hg -R repopath locate – Joel B Fant Aug 1 '11 at 19:21
@Joel: That doesn't work. The repopath here has to be local. – Faheem Mitha Aug 1 '11 at 19:31
@Faheem: You're right. – Joel B Fant Aug 1 '11 at 19:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.