How to list all files in a repository in Mercurial (hg)?

后端 未结 5 688
小蘑菇
小蘑菇 2021-01-30 19:19

Is there a command in mercurial that will list all files currently under source control?

I can do a dir /s to list all files in my folder and subfolders,

5条回答
  •  温柔的废话
    2021-01-30 20:03

    hg manifest will list only the files in the repository, while hg status --all will list all the files in the repository's structure and include a marker for which are being tracked and which aren't.

提交回复
热议问题