编程语言
首页 > 编程语言> > c# – 如何使用LibGit2Sharp库获取特定选定分支的存储库名称

c# – 如何使用LibGit2Sharp库获取特定选定分支的存储库名称

作者:互联网

我们正在使用LibGit2Sharp库来处理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,则您具有相关属性.

标签:c,github,libgit2sharp
来源: https://codeday.me/bug/20190706/1397024.html