I am trying to use NGit to connect to Github (ie using a private key as well as a password).
Can someone walk me through it?
My normal fetch would be:
var git = Git.CloneRepository()
.SetDirectory(_properties.OutputPath)
.SetURI(_properties.SourceUrlPath)
.SetBranchesToClone(new Collection<string>() { "master" })
.SetCredentialsProvider(new UsernamePasswordCredentialsProvider("username","password"))
.SetTimeout(3600)
.Call();
how would I do this with a private key?
After a long battle, many many google searches for Jgit examples and much more pain, I have found the solution!
Basically you override and SessionFactory with your own and inject your certificate at connection time:
And then inject it like so: