Local access to remote changes (only access, not merged): git remote update
or git fetch origin
Next, git status - uno
: allows you to see if the current branch is ahead/behind/diverging from the remote branch it tracks
Or, git show branch * Master
: you can see the commits of all the branches whose names end with master, so you can see the differences between origin/master and master on the commits level
Finally, git diff origin/Master
: you can see the difference between origin/master and master in code (file) level