如何从GitHub API获取最后一次提交

时间:2017-08-17 03:11:08

标签: git github github-api

我想知道哪种是使用GitHub API(Rest API v3)从git存储库获取最新提交信息的最佳方法。

选项1:GET /repos/:owner/:repo/commits/master 我可以假设该对象提交了#39;响应是分支大师的最新提交吗?

选项2:GET /repos/:owner/:repo/git/commits/5a2ff 或者调用,一个通过从master获取HEAD ref来获取sha,然后使用返回的sha获取提交信息。

感谢您的帮助

3 个答案:

答案 0 :(得分:16)

这取决于你对" last"的定义。

  • 对于给定的分支(如master),GET /repos/:owner/:repo/commits/master确实是最后一次(最近的)提交。

  • 但您也可以考虑the last push event:这将代表最后一次和最近的提交(在任何分支上),由用户推送到此回购。

答案 1 :(得分:2)

您还可以使用Github GraphQL v4来获取默认分支的最后一次提交:

{
  repository(name: "linux", owner: "torvalds") {
    defaultBranchRef {
      target {
        ... on Commit {
          history(first: 1) {
            nodes {
              message
              committedDate
              authoredDate
              oid
              author {
                email
                name
              }
            }
          }
        }
      }
    }
  }
}

或针对所有分支机构:

{
  repository(name: "material-ui", owner: "mui-org") {
    refs(first: 100, refPrefix: "refs/heads/") {
      edges {
        node {
          name
          target {
            ... on Commit {
              history(first: 1) {
                nodes {
                  message
                  committedDate
                  authoredDate
                  oid
                  author {
                    email
                    name
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}

Try it in the explorer

答案 2 :(得分:1)

如果您只需要某个分支的最新提交的 SHA1,这里有一个 curl 请求:

curl -s -H "Authorization: token {your_github_access_token}" \
-H "Accept: application/vnd.github.VERSION.sha" \ 
"https://api.github.com/repos/{owner}/{repository_name}/commits/{branch_name}"