我们正在使用Lib Git2Sharp库来处理 Github中的提交.
问题:我们需要通过LibGit2Sharp库获取Github中所选分支的所有存储库名称.
哪个类将具有特定分支的存储库名称集合.
我们搜索了下面的LibGit2Sharp文档但我们没有任何想法.
http://www.nudoq.org/#!/Projects/LibGit2Sharp
有人可以提出任何解决方案.
最佳答案 免责声明:
在下面的答案中,我假设你的意思是:
We need to get all the branch names for the selected repository in
Github through LibGit2Sharp library.
使用Repository类的Branches属性
以下程序使用Repository.Branches属性,然后迭代它:
class Program
{
// Tested with LibGit2Sharp version 0.21.0.176
static void Main(string[] args)
{
// Load the repository with the path (Replace E:\mono2 with a valid git path)
Repository repository = new Repository(@"E:\mono2");
foreach (var branch in repository.Branches)
{
// Display the branch name
System.Console.WriteLine(branch.Name);
}
System.Console.ReadLine();
}
}
程序的输出将显示如下内容:
origin/mono-4.0.0-branch
origin/mono-4.0.0-branch-ServiceModelFix
upstream/mono-4.0.0-branch-c5sr2
如果您需要其他类似分支的Remote或UpstreamBranchCanonicalName,则您具有相关属性.