I want to write a simple java program or client which can get count of all the commits done by users.
How can I write it? Ie, How to use Github APi's in our code so I get the right result?
There are some API's present, but can somebody give example as to how to use it in java client?
I explained before that counting all the commits of a repo isn't available in GitHub API for commits.
However, the GitHub API for Statistics proposes a contributor call with a
total
field which can be interesting.From the GitHub libraries pages, you can call this API in Java with:
org.eclipse.egit.github.core
(it has aContributor
object)