I used ExcelCompare and also some python script to be able to diff
Excel files.
When I'm making changes locally it works as expected, I can see the changes before committing.
However, when merging another branch into mine, and I have conflicts, the Excel files are seen as binaries, so I cannot check what are the differences or where the conflicts are.
Details:
We're using SourceTree
Global .gitconfig
file contains:
[diff "excel"]
binary = True
textconv = python 'C:/Program Files/Git/git_diff_xlsx.py'
.gitattributes
file contains:
*.xlsx diff=excel