Question - How do you find a list of files that has been changed in a particular commit?
Answer -
The command to get a list of files that has been changed in a particular commit is:
git diff-tree –r {commit hash}
- -r flag allows the command to list individual files
- commit hash lists all the files that were changed or added in the commit.