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 に答える