[Bro-Dev] all changes in branch?

Robin Sommer robin at icir.org
Fri Jan 28 12:53:36 PST 2011


On Fri, Jan 28, 2011 at 14:13 -0500, you wrote:

> How would I go about seeing all of the changes that have happened in a
> branch since the branch was created?

If you really want *all* changes, I think you need the revision r of
the branch point and can then do "git log r..HEAD".

If you want everything on the branch, but not on, say, master: "git
log HEAD ^master" (which I think is actually the same as "git log
master..HEAD", but more intuitive). You might want to throw in a
"--no-merges" as well. 

Robin

-- 
Robin Sommer * Phone +1 (510) 722-6541 * robin at icir.org
ICSI/LBNL    * Fax   +1 (510) 666-2956 *   www.icir.org


More information about the bro-dev mailing list