I'm trying to get a list of all files that have changed on a github repo in the last month for the master branch. My local clone does not have logs going back that far, so when I run the following command:
git diff --stat @{1.month.ago}
...I get a warning message, and a fraction of the changes. I also tried:
git diff --stat @{1.month.ago} origin
git diff --stat @{1.month.ago} origin/master
git diff --stat @{1.month.ago} origin master
...with the same result.
How to collect this list from the command line?