My requirement is to compare two Tags and obtain details about what has changed. To do this I'm using the below code. The code works, and I'm able to retrieve what files were added,removed and modified. However, I also need to obtain the Author who made the update to the file. How do I get the author? The 'TreeChanges' object does not have an author property.
Tag t1 = tags.Where(t => t.FriendlyName.Equals("10.0.0.01")).First();
Tree commitTree1 = repo.Lookup<Commit>(t1.PeeledTarget.Id.Sha).Tree;
Tag t2 = tags.Where(t => t.FriendlyName.Equals("10.0.0.99")).Firs();
Tree commitTree2 = repo.Lookup<Commit>(t2.PeeledTarget.Id.Sha).Tree;
var patch = repo.Diff.Compare<TreeChanges>(commitTree1, commitTree2);
Thanks!