In order to see the files that were committed in the last commit this command can be used:
$ git log --name-status HEAD^..HEAD
Here, --name-status is the key here; as noted by other folks in this question, you can use git log -1, git show, and git diff to get the same sort of output. You can also use git show <rev> when looking at individual revisions.