GitHub advanced search for commits

Viewed 16

I would like to make Andvanced Search in GitHub for commits that include specific text in the commit message between specific dates. Example: All commits that have "bugfix" in the commit message and "committed between 2022-01-01 and 2022-02-01".

I know I can do the query without date part with the following GET request:

https://api.github.com/search/commits?q=<CommitMessage>

But I cannot figure out how to do it within specific date-range, I have tried adding since:YYYY-MM-DD but that produce completely unexpected behaviour for me and has nothing to do with commit dates as far as I can see.

0 Answers
Related