GitHub API-最新的分支提交已推送到主服务器中吗?

时间:2019-05-04 17:18:33

标签: git github

如何检查最新的分支提交是否已通过Github API推送到主服务器中?

1 个答案:

答案 0 :(得分:0)

那将是GitHub API "Refs"

GET /repos/:owner/:repo/git/refs/:ref

我在2015年展示了more complete example here

但是不要忘记,简单的git ls-remote也会向您显示远程回购分支的最新提交。

将其与“ How to retrieve the hash for the current commit in Git?”进行比较

git rev-parse master

您可以检查是否已推送本地master HEAD提交。