从github项目中检索最新的提交修订号

时间:2012-06-28 15:40:08

标签: python django django-admin

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

APIv3 docs有点模糊,只提供一个似乎不起作用的部分网址。

e.g。 / repos /:user /:repo / commits是否对应https://www.github.com/repos/:user/:repo/commits?还是像https://www.github.com/api/v2/json/repos/:user/:repo/commits这样的其他东西?对于用户和回购的任何组合都不起作用。

1 个答案:

答案 0 :(得分: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"
  }
}