I have been developing some VBA Macros in Excel and I would like to use revision control to help manage the development.
I have discovered https://www.xltrail.com/client which is an open source Git command line extension: git-diff and git-merge.
It seems to work great from the git command line. However, I am used to using SourceTree. Anyone know how I can merge these two together?
Under git I tried system git instead of embedded. I also tried playing around with the external diff/merge options. I couldn't seem to get it right.
xltrail added the following to my .git/config file if this helps.
[diff "xltrail"]
command = git-xltrail-diff.exe
[merge "xltrail"]
name = xltrail merge driver for Excel workbooks
driver = git-xltrail-merge.exe %P %O %A %B
I am a beginner with Git and SourceTree. Any help would be greatly appreciated.