On Wed, May 30, 2012 at 11:09 PM, Felipe Contreras <felipe.contreras@xxxxxxxxx> wrote: > Hi, > > Basically what I want to do is: > > % git log branch ^<any-other-branch> > > IOW; all the commits were 'git branch --contains' would show 'branch' > and nothing else. I have a script called "otb" (only this branch, I guess; I tend to use crappily short names for stuff I don't make public!) that looks like this: #!/bin/bash m=$(git rev-parse HEAD) n=$(git rev-parse --branches | grep -v $m) git log --oneline $m --not $n I think that fits your description, but it's not *one* command. > Is there any easy way to do that? > > Cheers. > > -- > Felipe Contreras > -- > 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 -- Sitaram -- 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