List What Files Changed in a Git Commit
I've found in the past that it can be useful to know what files have changed in a given commit, i.e. to re-edit them, or to add whitespace to the end of file.
We can do this with the diff-tree
subcommand, giving it a commit to look at, and it'll return a list of all files changed:
$ git diff-tree --no-commit-id --name-only -r HEAD
$ git diff-tree --no-commit-id --name-only -r e08f540464a6adbddda7de71b85fc793ddfac2a8
content/mf2/2019/12/ewhan.md
Taken from How to list all the files in a commit? on Stack Overflow.