gpt4 book ai didi

python - 从 github 项目检索最新的提交修订号

转载 作者:行者123 更新时间:2023-12-01 05:59:19 25 4
gpt4 key购买 nike

如何检索 github 项目最近提交的修订号?

APIv3 docs有点含糊,只提供了部分 URL,似乎不起作用。

例如/repos/:user/:repo/commits 是否对应于 https://www.github.com/repos/:user/:repo/commits ?或者其他类似https://www.github.com/api/v2/json/repos/:user/:repo/commits的东西?两者都不适用于用户和存储库的任何组合。

最佳答案

在 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"
}
}

关于python - 从 github 项目检索最新的提交修订号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11248139/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com