When we do typical merges (ie: from branch A to B) with conflicts I can see the differences by running:
git status
git difftool --dir-diff --cached 
But if there are no conflicts then these commands don't return any results.  We run git push to push the changes to the remote repo (branch B in this example).  
What command can you run to see the differences which you just pulled down (and pushed) in this case?
 
     
    