如何使用 API 获取 Github 存储库的所有统计信息?
How to get all the statistics for a Github repository using the API?
我想实现类似 git log --stat
的效果,使用 Github API。
我想获取存储库中发生的所有提交以及在该特定提交中更改的文件。
我应该如何使用 Github API 执行此操作?
首先获取来自 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
我想实现类似 git log --stat
的效果,使用 Github API。
我想获取存储库中发生的所有提交以及在该特定提交中更改的文件。
我应该如何使用 Github API 执行此操作?
首先获取来自 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