在 Mercurial 中提交时合并文件

发布于 2024-09-26 19:16:23 字数 652 浏览 5 评论 0原文

我有一个包含 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 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文