我正在使用 Bonobo.Git.Server 作为我的 Git Repo 服务器。
我如何传递凭据来克隆 repo?下面是我使用的 c# 代码。但我不断收到此错误,
ERROR_libgit2 引发错误。类别 = 无效(错误)。无法解析支持的身份验证方案:操作标识符无效。
Credentials cred = new Credentials();
cred.Username = "pspl\admin";
cred.Password = "admin";
Repository.Clone("http://localhost:50287/Repo1.git", @"C:\Users\gohks\Desktop\testFolder", false, true, null, null, cred);
顺便说一句,可以发送当前登录窗口凭据吗?