显示 hg 存储库中的文件数量?
我有一个非常大且不断增长的仓库。有没有什么方便的方法可以让 Mercurial 显示存储库中跟踪的文件数量?我不想列出文件,我只想知道文件数。
谢谢!
I have a very large and growing repo. Is there any handy way to have mercurial show the number of files tracked in a repo? I don't want to list the files, I just want the file count.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hg Manifest
将打印当前修订版的版本控制文件列表,每行一个文件 - 在 Unix 上,hg Manifest | wc -l 可以工作。 (或者,
hg status --all
打印所有文件的列表,包括忽略的文件,因此如果您也想包含这些文件,则可以对这些行进行计数。)hg manifest
will print a list of version controlled files for the current revision, one file per line -- so on unix,hg manifest | wc -l
would work. (Alternatively,hg status --all
prints a list of all files, including ignored files, so you can count those lines if you want to include those too.)