Reputation: 35301
The best I have for this is to diff
the commit's tree with its parent's, and look for additions. E.g.
$ diff <( git ls-tree --name-only -r 1234567 ) \
<( git ls-tree --name-only -r 1234567~ ) | grep '^< '
Is there something more civilized than this?
Upvotes: 0
Views: 16