I want to get how many commits has done until a certain branch created from the Github API.
For example in git cli I'm doing: git log --no-merges --oneline ${branchHash} | wc -l
and I can see the number.
From the Github API there's a limit of 100 so if I have more than 100 commits I can't get them all.
Is there any solution for that case?