How can you display a list of files added or modified in a specific commit?
Access the commit stash data with git stash.
git stash
Find the commit in the remote repository, as that's the only place that kind of information is stored.
Use the diff-tree command with the commit hash.
diff-tree
Run git commit --info with the commit hash.
git commit --info