Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一个 mercurial 命令来获取存储库中的代码总行数。我确信有一种方法可以在没有扩展的情况下做到这一点。
谢谢
这应该这样做:
hg cat glob:** | wc --lines
它将包含任何二进制文件,但无论如何您都不应该存储这些文件。:)
如果您想计算当前签出的版本以外的某个版本, cat 将采用 -r 参数。
捆绑的流失扩展为您提供了每个作者更改的代码行列表。我怀疑这就是您的想法,因为没有扩展就没有功能可以做到这一点。