Branch switching, merging, and comparison are routine development tasks. This is a convenient visual way to compare two Git branches.
Install Git and a licensed copy of Beyond Compare, then configure it once:
1 | git config --global diff.tool bc |
Adjust the executable path for your installation.
Compare files one at a time:
1 | git difftool branch1 branch2 |
Open all differences as a folder comparison:
1 | git difftool -d branch1 branch2 |