0

我想将 .doc 或 .docx 文件与git diffusing进行比较textutil。例如:textutil 'Hello.doc' -convert txt -stdout。但是我不知道如何在不编写新的 git difftool 的情况下将其放入带有参数的配置文件中。我也尝试使用 catdoc,但意识到它不适用于 .docx。想法?

4

1 回答 1

0

您是否尝试过 Git 帮助页面中“定义外部差异驱动程序”中的说明?

在 git 属性中,您将指定 doc 和 docx 的类型,在 git config 中,您将指定转换过程。类似的东西(不幸的是,我无法对此进行测试)

属性

*.docx diff=docxdiff

配置

[diff "docxdiff"]
    command = textutil -convert txt -stdout

Git 属性

于 2014-09-12T17:51:21.960 回答