On Mon, Jan 22, 2018 at 10:22:21PM -0500, Aleksey Bykov wrote: > I am a code reviewer, I have a situation in GIT: > > - before: a.txt > > Then a developer decided to split the content of a.txt into 2 files > and add a few changes all in one commit: > > - after: b.txt + few changes and c.txt + few changes > > Is there an easy way to see: > > 1. what came to b from a? > 2 .what came to c from a? > 3. all extra changes apart from just moving stuff? Jonathan suggested the new "--color-moved", which I second as a good way of seeing what was moved, and which lines were changed. For seeing which line came from where, you might try "git blame -C", which will cross file boundaries looking for the source of lines. For instance, here's a case in git where some code was moved: git blame -C ae563542bf10fa8c33abd2a354e4b28aca4264d7 revision.c You can see which lines are new to the file, and which ones were moved from elsewhere. If you want to simplify the "noise" of seeing the actual origin of each line, you can ask blame not to go further back. Like: commit=ae563542bf10fa8c33abd2a354e4b28aca4264d7 git blame -b -C $commit^..$commit revision.c That will leave the commit id blank for every line that wasn't touched as part of the commit (or if you had a whole series of commits, replace "$commit^" with the parent of the series). And finally, if you're going to do a lot with "git blame", I'd look into the "tig" tool as a prettier interface. You should be able to do "tig blame -C ..." in the same way. -Peff