Op 21-3-2012 15:00, Pavel Sanda schreef:
Vincent van Ravesteijn wrote:
all commits that are in this range). If you want to see the code changes
introduced by a merge you can do:

$ git diff 9236a938 9236a938^1

This will show you that the merge is not empty at all.
Is there a way how to obtain full listing of diffs which went into the master?
(I mean something like git log -p produced by git-svn on the old svn trunk).


Something like this:

$ git log 9236a938^1..9236a938 --no-merges -p

you mean ?

Vincent

Reply via email to