You are not the first one to think about a "revision number" in Git, but 'wc' is quite dangerous, since commit can be erased or squashed, and the history revisited.
The "revision number" was especially important for Subversion since it was needed in case of merge (SVN1.5 and 1.6 have improved on that front).
What you could end up with is a pre-commit hook which would include in the comment a revision number, with an algo not involving looking up the all history of a branch to determine the correct number.
Bazaar actually came up with such an algo and it may be a good starting point for what you want to do.
(As Bombe's answer points out, Git has actually an algo of its own, based on the latest tag, plus the number of commits, plus a bit of SHA1 key). You should see (and upvote) his answer if it works for you.
To illustrate Aaron's idea, you can also append the git commit hash into an application’s "info" file you are distributing with your application.
That way, the about box would look like:

The applicative number is part of the commit, but the 'application’s "info" file' is generating during the packaging process, effectively linking an applicative build number to a technical revision id.
git rev-list HEAD --countgit rev-list – jberger Feb 5 at 18:46