git如何支持doc文档
(2017-09-15 22:58:57)
标签:
gitword |
分类: software |
这个问题很容易解决,只要添加一个
内容如下:
/////////////////////////////////////////////////////////////////////////
# Auto detect text files and perform LF normalization
* text=auto
# Custom for Visual Studio
*.cs
*.sln
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot
*.DOT
*.pdf
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
////////////////////////////////////////////////////////////////
git 完全支持 docx 文件的差异对比,因为 git 内部也是使用了 zlib,docx 本质上是 zip 文件,比较差异还是很容易的。
http://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes

加载中…