gpt4 book ai didi

git - 使用 Github API 在 GitHub 上查询组织内的存储库

转载 作者:行者123 更新时间:2023-12-02 03:32:38 25 4
gpt4 key购买 nike

我需要编写脚本,该脚本将获取 Github 上特定组织内从“test*”开始的存储库名称。

谁能提示我 - 以哪种方式挖掘?要么可以通过一些 API 查询实现,要么我可以通过 git 命令行来实现?

最佳答案

您可以使用 search query通过位于存储库名称、描述或自述文件中的关键字 test 过滤存储库(但仅存储库名称没有过滤器):

Github API v3 休息

https://api.github.com/search/repositories?q=org%3Agithub%20test&per_page=100

Github API v4 GraphQL

{
search(query: "test org:github", type: REPOSITORY, first: 100) {
repositoryCount
edges {
node {
... on Repository {
nameWithOwner
}
}
}
}
}

Try it in the explorer

关于git - 使用 Github API 在 GitHub 上查询组织内的存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51382366/

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