The quickest way to see the revisions is through git show
Syntax:
$ git show REVISION:path/to/file
Replace revision with your actual revision
For example:
If suppose you need to see the revision of 2 commits ago.
$ git show HEAD~2:src/main.c
Note:
The Path is from the root repository should start with either ./ or ../
For more information refer man page for git-show
https://git-scm.com/docs/git-show