下面的代码将Git url克隆到测试目录。
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之前获取一个新分支。无论如何,它抛出An error was raised by libgit2. Category = Net (Error). Request failed with status code: 401
例外。
如何解决这个问题?
答案 0 :(得分:3)
您可以指定要通过 FetchOptions 实例使用的凭据作为Fetch
来电的最后一个参数。
repo.Fetch("origin", new FetchOptions { Credentials = credential});