gitk compare between two branches code example
Example 1: get difference between two git branches
Just specify your local branch1 or remote origin/branch2
git diff branch1 origin/branch2 #show diff referenced from second branch
Example 2: git compare two branches
git diff branch1..branch2