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
git log --pretty=format: --name-only --since="2 days ago"
if some files duplicate in multiple commits, you can use pipe to filter it
git log --pretty=format: --name-only --since="2 days ago" | sort | uniq