How to list only the file names that changed between two commits?
$git diff 518be77..24a893b --name-only
Question> How can I get the list of file names that have been changed by a user(i.e. Tom)?
I tried the following but it doesn't work.
$git diff 518be77..24a893b --name-only --author=Tom
Also the following command can list all modified files by the user but I have to manually find those two commits.
$ git log --author=Tom --name-only --oneline
Thank you