git how to compare branches from a while ago code example
Example 1: git show diff between branches
git diff branch_1..branch_2
Example 2: git check diff against master
git diff master...branch
git diff branch_1..branch_2
git diff master...branch