Guest User

Untitled

a guest
Aug 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using (var repo = new Repository(@"pathtorepo.git"))
  2. {
  3. // Rev walking
  4. var commits = repo.Commits
  5. .StartingAt("sha")
  6. .Where(c => c.Author.Email.Contains("@example.com"))
  7. .ToList();
  8. }
Add Comment
Please, Sign In to add comment