git current branch compare code example
Example 1: how to check current branch in git
git rev-parse --abbrev-ref HEAD
// To check the current branch
Example 2: git diff current repo and remote branch
Just specify your local branch1 or remote origin/branch2
git diff branch1 origin/branch2 #show diff referenced from second branch