使用Github API是否可以确定分支是否在默认分支之前?

时间:2018-07-28 08:53:33

标签: github github-api octokit

使用Github API(无本地git命令),是否可以比较分支以查看其是否在默认分支之前有任何更改?

我正在构建一个审核工具,并希望确定要关闭的候选分支,因为它们的所有更改都存在于默认分支中。

我想要驱动分支页面上图表的相同信息: branch that has (请参见https://github.com/octokit/octokit.rb/branches

是否可以仅使用Github API来获取此信息?

1 个答案:

答案 0 :(得分:1)

您可以:

在这种情况下,它将是: https://api.github.com/repos/octokit/octokit.rb/compare/kytrinyx/generator/spike...master

使用的示例:

branch=kytrinyx/generator/spike
default_branch=$(curl -s "https://api.github.com/repos/octokit/octokit.rb" | jq -r '.default_branch')
curl -s "https://api.github.com/repos/octokit/octokit.rb/compare/$branch...$default_branch" | \
     jq -r '.ahead_by, .behind_by'