1

您如何检索 github 项目最近提交的修订号?

APIv3文档有点模糊,只提供了一个似乎不起作用的部分 URL。

例如 /repos/:user/:repo/commits 是否对应于https://www.github.com/repos/:user/:repo/commits?或者其他类似https://www.github.com/api/v2/json/repos/:user/:repo/commits的东西?两者都不适用于用户和回购的任何组合。

4

1 回答 1

2

在 git 中,您只能请求某个给定分支上的当前提交。这是一个例子:

$ wget -q -O - https://api.github.com/repos/smarnach/pyexiftool/git/refs/heads/master 
{
  "ref": "refs/heads/master",
  "url": "https://api.github.com/repos/smarnach/pyexiftool/git/refs/heads/master",
  "object": {
    "type": "commit",
    "url": "https://api.github.com/repos/smarnach/pyexiftool/git/commits/7be4b9bb680521369f2ae3310b1f6de5d14d1f8b",
    "sha": "7be4b9bb680521369f2ae3310b1f6de5d14d1f8b"
  }
}
于 2012-06-28T16:35:45.310 回答