zoukankan      html  css  js  c++  java
  • git如何支持doc文档

    这个问题很容易解决,只要添加一个 .gitattributes

    内容如下:

    /////////////////////////////////////////////////////////////////////////

    # Auto detect text files and perform LF normalization

    * text=auto

     

    # Custom for Visual Studio

    *.cs     diff=csharp

    *.sln    merge=union

    *.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  diff=astextplain

    *.DOT  diff=astextplain

    *.pdf  diff=astextplain

    *.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 

  • 相关阅读:
    redis命令
    eclipse error pages 打红X的解决方法
    探究adroid活动
    Javascript基本算法演练 Seek and Destroy
    c语言结构体排序示例
    android studio 环境配置
    git学习
    栈用于2进制转换10进制
    html和js
    js
  • 原文地址:https://www.cnblogs.com/saryli/p/11385231.html
Copyright © 2011-2022 走看看