I'm trying to connect to a repo:
using(var Git = new Repository(
Repository.Clone("https://github.com/wikimedia/mediawiki-core", "tmp")
)){
foreach(var Commit in Git.Commits)
{
MessageBox.Show(Commit.Author.Name);
}
}
It connects ok (as in, if I change the URL I get the expected exception), but no MessageBoxes are shown - why? This should be simple.
Few things to consider regarding your question:
Repository.Clone()) then to perform some work against the local repository.Clone() method with a transfer progress handler.The code below (greatly inspired from your own code) clones a remote repository, outputting the current clone progress to the console, and enumerates the commits reachable from HEAD.
It's been successfully tested against LibGit2Sharp v0.14.1 NuGet package.
public void CloneAndEnumerateCommitsFromHead()
{
var tmp = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
string path = Repository.Clone(
"https://github.com/nulltoken/TestGitRepository",
tmp,
onTransferProgress: ProgressHandler);
using (var Git = new Repository(path))
{
foreach (var Commit in Git.Commits)
{
Console.WriteLine("{0} by {1}",
Commit.Id.ToString(7),
Commit.Author.Name);
}
}
}
private int ProgressHandler(TransferProgress progress)
{
Console.WriteLine("{0}/{1}", progress.IndexedObjects, progress.TotalObjects);
return 0;
}
When being run, it outputs the following
0/70
1/70
2/70
2/70
...snipped for brevity...
68/70
69/70
70/70
70/70
49322bb by A U Thor
d0114ab by A U Thor
f73b956 by A U Thor
6e14752 by A U Thor
1203b03 by A U Thor
bab66b4 by A U Thor
83834a7 by A U Thor
6462e7d by A U Thor
42e4e7c by A U Thor
7f82283 by A U Thor
59706a1 by A U Thor
c070ad8 by A U Thor
d31f5a6 by A U Thor
83d2f04 by A U Thor
6db9c2e by A U Thor
d86a2aa by A U Thor
0966a43 by A U Thor
2c34933 by A U Thor
ac7e7e4 by A U Thor
58be465 by A U Thor
6c8b137 by A U Thor
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With