List files modified for particular git commit
git, git-commit
Solution
For filenames only:
git show --name-only abc
To see a summary of what happened to them:
git show --name-status abc
Problem
I have commit, `abc`, and I want to list files that were modified for the commit. What is the git command which will list modified files for that commit?