Version control for DOCX and PDF?

后端 未结 7 502
走了就别回头了
走了就别回头了 2021-02-01 02:09

I\'ve been playing around with git and hg lately and then suddenly it occurred to me that this kind of thing will be great for documents.

I\'ve

相关标签:
7条回答
  • 2021-02-01 03:13

    There are two different concepts here - one is "can the version control system make some intelligent judgements about the contents of files?" - so that it can store just delta information between revisions (and do things like assign responsibility to individual parts of a file).

    The other is 'do I have a file comparison tool which is useful for the types of files I have in the version control system'. Version control systems tend to come with file comparison tools which are inferior to dedicated alternatives. But they can pretty much always be linked to better diff programs - either for all file types or specific ones.

    So it's common to use, for example, Beyond Compare as a general compare tool, with Word as a dedicated Word document comparer.

    Different version control systems differ as to how good people perceive them to be at handling 'binaries', but that's often as much to do with handling huge files and providing exclusive locking as it is to do with file comparison.

    0 讨论(0)
提交回复
热议问题