Is there a way to get just a list of filenames of a remote mercurial repo?
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 rep开发者_StackOverflow社区o (which is about 1G).
hg locate
lists the content of a repository, filters can be applied on demand.
精彩评论