The example on the docs shows that to find commits that match a string, +
can be used as in:
q=repo:octocat/Spoon-Knife+css
if one would like to look for commits that include css
in the Spoon-Knife
repo for octocat
. I wonder if there's a way I can get N numbers of commits (for example, get only 10, or get 10,000)
I see there are two parameters I might be able to use, but only to get up to 100:
per_page integer query Results per page (max 100).
page integer query Page number of the results to fetch.
Not really sure how to use per_page
to get way more commits than 100.