How to perform better document version control on Excel files and SQL schema files
The answer I have written here can be applied in this case. A tool called xls2txt can provide human-readable output from .xls files. So in short, you should put this to your .gitattributes file: *.xls diff=xls And in the .git/config: [diff “xls”] binary = true textconv = /path/to/xls2txt Of course, I’m sure you can find … Read more