I am looking for a simple git command that provides a nicely formatted list of all files that were part of the commit given by a hash (SHA1), with no extraneous
git
If you want to get list of changed files:
git diff-tree --no-commit-id --name-only -r
If you want to get list of all files in a commit, you can use
git ls-tree --name-only -r