So I am running this in my terminal:
curl https://api.github.com/repos/d3/d3/commits?since=2016-07-23T00:00:00Z&until=2017-07-23T23:59:59Z
and I think I am getting what I want, however the result is not complete. I think I am just getting the first page. My next move was to back it up to the earliest entry I was able to pull with:
curl https://api.github.com/repos/d3/d3/commits?since=2016-07-23T00:00:00Z&until=2017-01-26T21:07:19Z
I thought this would give me a separate set of results (and manually concatenate) but its exactly the same as the first line. Adding ?page=1,2,3... did not change my results either.
Also: I tried directing this request into a text file but it was blank when I opened and the command ran in the terminal instead.
curl (url) > YearCommits.txt
What am I doing wrong?