其他分享
首页 > 其他分享> > 如何使用LibGit2Sharp从Git获取更改?

如何使用LibGit2Sharp从Git获取更改?

作者:互联网

下面的代码将Git网址克隆到测试目录.

var url = @"http://abc-555.com/team/project-555.git";
var path = @"E:\temp_555";

var credential =  new Credentials() { Username = "a8888", Password="88888888"};
var clonePath = Repository.Clone(url, path, credentials: credential);

using (var repo = new Repository(clonePath))
{
    foreach (var branch in repo.Branches)
    {
        Console.WriteLine(branch.Name);
    }

    // somebody creates a new branch here, so I want to fetch it.
    repo.Fetch("origin");

    foreach (var branch in repo.Branches)
    {
        Console.WriteLine(branch.Name);
    }
}

我想先获取一个新分支,然后再将其合并到本地Git中.无论如何,它会引发libgit2引发错误.类别=净(错误).请求失败,状态码:401异常.

如何解决这个问题?

解决方法:

您可以指定要通过FetchOptions实例使用的凭据作为Fetch调用的最后一个参数.

repo.Fetch("origin", new FetchOptions { Credentials = credential});

标签:libgit2sharp,git,version-control,c,net
来源: https://codeday.me/bug/20191122/2056736.html