How can I see the differences between two branches?

I have two branches: branch_1 and branch_2. How can I see the differences between them? 5 You want to use git diff. git diff [<options>] <commit>..​<commit> [–] [<path>…​] Where <commit> is your branch name, the hash of a commit or a shorthand symbolic reference For instance git diff abc123..def567 or git diff HEAD..origin/master That will … Read more