On Thu, Jan 28, 2010 at 7:44 PM, Mike Linck <mgl@xxxxxxxxxxxxxxxxxxxxxxxx> wrote: > I've looked through as much documentation as I can find about git show > and git log, and I've played around with git rebase to try to apply > changes to multiple places, but I have not been able to find a way to > display the commits relevant to a particular bug/topic branch. I've done a similar job for quite a while, and kernel hackers need that all the time too. If the branches merge a lot, what you need to know is what patches are only on one side, and not on the other. Two things to the rescue: - the "3 dots" "..." separator. try with gitk and git log: git log mybranch...hisbranch git log hisbranch...mybranch - git am (which is part of the rebase machinery) does the same as the "..." operator, but has additional tricks to try and spot commits that have been cherry picked. So I would often export patches with git am just to review what' s on one side. hth, m -- martin.langhoff@xxxxxxxxx martin@xxxxxxxxxx -- School Server Architect - ask interesting questions - don't get distracted with shiny stuff - working code first - http://wiki.laptop.org/go/User:Martinlanghoff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html