When trying to launch Beyond Compare using git, I get this error:
The diff tool bc3 is not available as 'bcompare'
fatal: external diff died, stopping at plugins/PushPlugin.m
Set up diff tool:
$ git config --global diff.tool bc3
Try to compare directory:
$ git difftool plugins
Viewing (1/2): 'plugins/PushPlugin.m'
Launch 'bc3' [Y/n]: y
bcompare
is not suitable for git diff, as git creates temporary files for one or both of the sides and deletes them after difftool returns, andbcompare
returns immediately.bcomp
does the job. – Commissioner