i am using Bonobo.Git.Server as my Git Repo Server.
how can i pass in credientials to clone a repo? Below is the c# code i use. but i keep getting this error,
ERROR_An error was raised by libgit2. Category = Invalid (Error). Failed to parse supported auth schemes: The operation identifier is not valid.
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);
BTW can possible to send current logon windows crediential?