You can see the files changed in a particular commit as follows
git show --stat <commit-hash>
Alternatively you can also view the patch introduced with each commit using the -p flag
git log -p <commit-hash>
BTW git show
takes the same formatting arguments as git diff-tree
, here's the documentation for diff-tree.