我需要从github上的私有存储库中检索所有提交。
我已经尝试过使用github API文档。它提供了用于检索公共存储库提交的API。 https://api.github.com/repos/:owner/:repo/commits
任何人都可以帮我从私人存储库中提取所有提交内容吗?
答案 0 :(得分:4)
私有存储库意味着您需要进行身份验证才能执行查询(此处获取提交) 如果您拥有私人仓库,这应该有效:
curl -u 'username:password' https://api.github.com/repos/:owner/:repo/commits
答案 1 :(得分:0)
您还可以创建Personal access tokens
以用于特定用途... here。
使用邮递员: