使用 Github API 是否可以确定分支是否在默认分支之前?
Using the Github API is it possible to determine if a branch is ahead of the default branch?
使用Github API(没有本地git命令),是否可以比较分支以查看它是否在默认分支之前有任何更改?
我正在构建一个审计工具,并且想要确定要关闭的候选分支,因为它们的所有更改都存在于默认分支中。
我想要驱动分支页面上图表的相同信息:
(参见 https://github.com/octokit/octokit.rb/branches)
是否可以仅通过 Github API 获取此信息?
您可以:
获取默认分支
使用 compare two commits API 将指定分支与默认分支进行比较,并提取 ahead_by
和 behind_by
字段。
在那种情况下,它将是:
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'
使用Github API(没有本地git命令),是否可以比较分支以查看它是否在默认分支之前有任何更改?
我正在构建一个审计工具,并且想要确定要关闭的候选分支,因为它们的所有更改都存在于默认分支中。
我想要驱动分支页面上图表的相同信息:
是否可以仅通过 Github API 获取此信息?
您可以:
- 获取默认分支
使用 compare two commits API 将指定分支与默认分支进行比较,并提取
ahead_by
和behind_by
字段。
在那种情况下,它将是: 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'