Comparing a file between two git branches is quite easy. You can do it with both diff and difftool.
Straight diff
git diff BRANCH_ONE BRANCH_TWO -- FILE
Using difftool
git difftool BRANCH_ONE BRANCH_TWO -- FILE
Comparing a file between two git branches is quite easy. You can do it with both diff and difftool.
Straight diff
git diff BRANCH_ONE BRANCH_TWO -- FILE
Using difftool
git difftool BRANCH_ONE BRANCH_TWO -- FILE