Git can not send this information remotely.
You would have to do a Git fetch (fetching the changes, without altering your working copy). You will then have a branch called “origin/master” which will enable you to use git log master..origin/master to get the variance between the two.
git fetch
git log master..origin/master