I see someone has answered a similar question here: http://stackoverflow.com/questions/8259851/using-git-diff-how-can-i-get-added-and-modified-lines-numbers
Not really any good answers though. I think this is something you'll have to build a script for. A starting point could be to get the files of the commits (git show [commit] --name-status) - and then do git blame | grep [commit] on the results. There's probably a more elegant way to do this using low-level git commands. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/_JCsL9NBzrgJ. To post to this group, send email to git-users@googlegroups.com. To unsubscribe from this group, send email to git-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.