miku
miku

Reputation: 188014

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 repo (which is about 1G).

Upvotes: 0

Views: 78

Answers (1)

pyroscope
pyroscope

Reputation: 4158

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

Upvotes: 1

Related Questions