How to perform better document version control on Excel files and SQL schema files

前端 未结 9 1283
执念已碎
执念已碎 2020-11-27 09:29

I am in charge of several Excel files and SQL schema files. How should I perform better document version control on these files?

I need to know the part modified (di

9条回答
  •  臣服心动
    2020-11-27 09:50

    Tante recommended a very simple approach in Managing ZIP-based file formats in Git:

    Open your ~/.gitconfig file (create if not existing already) and add the following stanza:

    [diff "zip"]
    textconv = unzip -c -a
    

提交回复
热议问题