使用 Mercurial 的过滤系统转换多个文件
是否可以使用过滤器转换多个相互依赖的文件?
例如,不是将 a.zip 转换为 a.txt
和 b.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,恐怕解码/编码过滤系统可以工作仅在单个文件上。
在内部,过滤系统由
中的 中的三个方法使用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.