使用 Mercurial 的过滤系统转换多个文件

发布于 2024-09-27 14:47:05 字数 261 浏览 7 评论 0原文

是否可以使用过滤器转换多个相互依赖的文件?

例如,不是将 a.zip 转换为 a.txtb.zip 转换为 b.txt 是否可以将 a.zip AND b.zip 转换为 ab .txt? 问题是 a.zip 和 b.zip 无法单独转换,因为 a.zip 包含转换 b.zip 所需的数据。

使用 tempfile 选项仅创建一个(临时)文件,并仅将此文件的名称传递给转换器的可执行文件。

Is it possible to convert multiple, on-each-other-depending files using a filter?

E.g. instead of converting a.zip to a.txt and b.zip to b.txt is it possible to convert a.zip AND b.zip to ab.txt?
The problem is that a.zip and b.zip can't be converted individually, since a.zip contains data which is needed for the conversion of b.zip.

Using the tempfile option creates only one (temp-)file, and passes only this file's name to the converter's-executable.

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

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

发布评论

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

评论(1

情深缘浅 2024-10-04 14:47:06

不,恐怕解码/编码过滤系统可以工作仅在单个文件上。

在内部,过滤系统由 中的 中的三个方法使用localrepo。这些函数对工作副本文件名进行操作。

No, I'm afraid the decode/encode filter system works on single files only.

Internally, the filter system is used by three methods in the localrepo class. These functions operate on working copy file names.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文