You can fetch from a remote repo, see the differences and then pull or merge.
This is an example for a remote repo called origin and a branch called master tracking the remote branch origin/master:
git checkout master
git fetch
git diff origin/master
git pull --rebase origin master