我最近开始使用octokit库从github存储库中检索数据。
我可以像这样形成搜索请求
var request = new SearchCodeRequest("ValueSets", "xyzconnect", "projectA")
{
// we can restrict search to the file, path or search both
In = new[] { CodeInQualifier.Path },
};
var result = await client.Search.SearchCode(request);
或直接使用
检索 var xsx1 = await client.Repository.Content.GetAllContents(repository.Id, "ValueSets");
当我使用默认分支(通常是master)时,此方法工作正常,但是如何对其他分支执行相同的功能?
编辑
因此要从分支机构获取内容,请使用API
var xsx2 = await client.Repository.Content.GetAllContentsByRef(repository.Id, "ValueSets","develop");