git how to see difference between local and remote in a file code example
Example 1: git check difference between local and remote
git diff @{upstream}
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