I am trying to compare two git branches. With git I would do
git diff banch1..branch2
With the Beyond Compare tool I tried
git difftool branch1..branch2
but now it looks like it's comparing the branches file by file. So I added the --dir-diff (-d)
flag
git difftool -d branch1..branch2
but now I get an error
fatal: could not open '/var/folders/zj/btt2_b5d6_b34fndcvzws9jr0000gn/T//git-difftool.VtceWd/left/ED/Template/sun-lncc/Template/dbged' for writing: No such file or directory
How do I fix this?