从github检索私有存储库提交

时间:2012-11-07 20:02:12

标签: django git github github-api

我需要从github上的私有存储库中检索所有提交。

我已经尝试过使用github API文档。它提供了用于检索公共存储库提交的API。   https://api.github.com/repos/:owner/:repo/commits

任何人都可以帮我从私人存储库中提取所有提交内容吗?

2 个答案:

答案 0 :(得分:4)

私有存储库意味着您需要进行身份验证才能执行查询(此处获取提交) 如果您拥有私人仓库,这应该有效:

curl -u 'username:password' https://api.github.com/repos/:owner/:repo/commits

答案 1 :(得分:0)

您还可以创建Personal access tokens以用于特定用途... here

enter image description here

使用邮递员:

https://api.github.com/repos/:owner/:repo/commits enter image description here