How can I have a list with all the files that were changed in the last 2 days? I know about
git log --name-status --since="2 days ago"
but this will show me ids, dates and commit messages. All I need is the list of the file names which were changed.
Is that possible with git?