On Fri, Sep 12, 2014 at 07:16:26AM +0530, Stephen Smith wrote: > Is there a way to get a log of first parent commits and with each > commit a entry a list of the files that were changed? How about: git log --first-parent -m --name-only The "--first-parent" restricts the traversal. The "-m" tells git to show merge diffs against their parents. We show only the diff against the first parent due to "--first-parent", so we effectively show the diff of what was brought in by the merge. And then "--name-only" can be replaced with "--raw", "-p", or whatever diff format you prefer. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html