Is the a way to get a log with files that were changed

2014-09-11 Thread Stephen Smith
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? SPS Sent from my iPhone-- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: Is the a way to get a log with files that were changed

2014-09-11 Thread Jeff King
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