如何使用API​​获取Github存储库的所有统计信息?

时间:2015-12-12 15:33:04

标签: python git api github github-api

我希望使用Github API实现类似git log --stat的功能。

我想获取存储库中发生的所有提交以及在该特定提交中更改的文件。

我应该如何使用Github API进行此操作?

1 个答案:

答案 0 :(得分:2)

首先从https://api.github.com/repos/:owner/:project/commits

获取提交
curl -i https://api.github.com/repos/masnun/torrent-tweeter/commits

然后,您可以使用提交API来获取更改的文件。 https://developer.github.com/v3/repos/commits/#get-a-single-commit