-
Notifications
You must be signed in to change notification settings - Fork 888
git clone
Ana Batista edited this page Mar 23, 2017
·
5 revisions
$ git clone https://github.com/libgit2/libgit2sharp.git
Repository.Clone("https://github.com/libgit2/libgit2sharp.git", "path/to/repo");
To provide a username and password, pass in CloneOptions.
var co = new CloneOptions();
co.CredentialsProvider = (_url, _user, _cred) => new UsernamePasswordCredentials { Username = "Username", Password = "Password" };
Repository.Clone("https://github.com/libgit2/libgit2sharp.git", "path/to/repo", co);