In order to see what files I modified in the last period of time I use the following command:
git log --pretty=format: --name-only --since="2 days ago" | sort | uniq
The thing is that I'll like to transform this into an alias. Can I pass the 2 days ago
as an argument to my alias command?
PS: I'm using Windows