If I understand correctly, essentially, you want to know how many commits have happened on a given file since you last updated.
First get the changes in the remote origin, but don't merge them into your master branch:
% git fetch
Then get a log of the changes that have happened on a given file between your master branch and the remote origin/master.
% git log master..origin/master foo.el
This gives you the log messages of all the commits that have happened in the remote repository since you last merged origin/master into your master.
If you just want a count of the changes, pipe it to wc. Say, like this:
% git log rev-list master..origin/master foo.el | grep "Author: " | wc -l
I picked "Author: " to grep for rather than "commit " to match the first line of "commit <hash>" because "commit" is rather likely to show up in someone's commit message, and it doesn't have the colon separator to differentiate it from the regular word in a sentence.
