如何使用 Mercurial 归档/导出自特定修订版以来更改的所有文件?

发布于 2024-08-31 19:21:11 字数 199 浏览 4 评论 0原文

Mercurial 支持一个方便的归档命令,它允许您将特定修订版中的所有文件(感谢 Ry4an 在评论中指出这一点)导出到另一个文件夹/zip 文件等。具体操作如下:有

hg archive -r REV destination

没有办法仅导出自特定修订版以来更改的文件并导出到头部?

谢谢, 波阿斯

Mercurial supports a handy archive command which allows you to export all files as they were in a specific revision (thanks to Ry4an for pointing this out in a comment) to another folder/zip file etc. This is done as follows:

hg archive -r REV destination

Is there a way to export only the files changed since a certain revision and to the head?

Thanks,
Boaz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

献世佛 2024-09-07 19:21:11

请参阅我关于您对存档功能的误解的评论。鉴于此,您可能实际上并不需要一种方法来构建仅包含从修订版 X 更改为修订版 Y 的文件的存档,但以防万一您确实这样做,这将做到这一点:

hg grep -r X:Y --all . | cut -d : -f 1 | sort -u | sed 's/^/-I /' | xargs echo hg archive

See my comment about your misinterpretation of what archive does. Given that, it might not still be the case that you actually want a way to build an archive with only the files that have changed from revision X to revision Y, but just in case you really do, this will do it:

hg grep -r X:Y --all . | cut -d : -f 1 | sort -u | sed 's/^/-I /' | xargs echo hg archive
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文