从Git statistics API中检索所有提交

时间:2016-11-05 07:48:11

标签: git github

我想使用Git Statistics API从Github检索所有提交:

GET /repos/:owner/:repo/commits

我尝试使用curl https://api.github.com/repos/:owner/:repo/commits,但它并没有向我显示所有提交,而是一些最新提交。有没有办法只检索整个提交列表?

1 个答案:

答案 0 :(得分:2)

您需要关注" 154"为了检索所有提交,因为这样的提交查询的结果很可能是分页的。
详情请参阅" Traversing with Pagination" (2014年5月)

这样可以避免在一个答案中通过http发回过大的结果。