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!
It does not because a "modified" file could have been, between two tag, modified by one author, then removed, then added again by another author, then modified by a third.
You would need to list all commits between those two tags, check if the file is part of that commit and get the author of that commit (
commit.Author
) in order to find all authors having touch said file.See: