在 Mercurial 中提交时合并文件
我有一个包含 2 个文件的项目,我想使用 Mercurial 进行源代码控制:
- 一个 SCX 文件,它是一个二进制(数据库)文件
- 一个 SCT 文件,它是一个文本文件
我的过滤器:
[encode]
**.scx = tempfile: sccxml INFILE OUTFILE 0
[decode]
**.scx = tempfile: sccxml INFILE OUTFILE 1
问题
- sccxml 只接收到SCX 文件
- 如果没有相应的 SCT 文件,SCX 文件无法转换为文本文件
解决方法
- 是否可以在过滤器运行之前合并文件?
- 是否可以将两个文件的路径传递给 sccxml-Converter?
更新:
不,我没有使用 Win32Text 扩展。 SccXml-Executable 需要 SCT-File 和 SCX-File 作为参数,将它们转换为文本文件(两个文件的文本表示形式都压缩到一个文件中)。
我希望将二进制文件作为存储库中的文本文件,以获得有意义的差异。我目前正在尝试使用预提交挂钩来实现此目的。
I've got a project with 2 files I want to source-control using Mercurial:
- A SCX-File which is a binary (database) file
- A SCT-File which is a text file
My filter:
[encode]
**.scx = tempfile: sccxml INFILE OUTFILE 0
[decode]
**.scx = tempfile: sccxml INFILE OUTFILE 1
Problem
- sccxml only receives the path to the SCX-File
- The SCX-File can not be converted to a text-file without the corresponding SCT-File
Workarounds
- Is it possible to combine the files before the filter runs?
- Is it possible to pass both file's paths to sccxml-Converter?
UPDATE:
No, I'm using not using the Win32Text extension.
The SccXml-Executable needs both an SCT-File and an SCX-File as parameter to convert them to a Text-File (the text-representations of both files get tar'ed into one file).
I Want To have the binary files as Text-File in the Repo, to get meaningful diffs. I am currently trying to achieve this using a precommit hook.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论