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
Use the diff-tree command with the commit hash.
diff-tree
Find the commit in the remote repository, as that's the only place that kind of information is stored.
Run git commit --info with the commit hash.
git commit --info