gpt4 book ai didi

java - 如何使用 github API 列出二级分支?

转载 作者:行者123 更新时间:2023-12-02 11:45:19 26 4
gpt4 key购买 nike

我正在使用 Java 的 org.eclipse.egit.github.core api。但我还没有找到像给定存储库一样可以列出它内部的所有分支的任何地方。

最佳答案

看一下源码,好像是在RepositoryService类中there is a method用于拉取存储库的所有分支。根据他们的示例代码,我认为请求将如下所示:

RepositoryService service = new RepositoryService();
RepositoryId repo = new RepositoryId("rails", "rails");
for (RepositoryBranch branch : service.getBranches(repo))
System.out.println(branch.getName());

关于java - 如何使用 github API 列出二级分支?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48251980/

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