all changes in branch?

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

  .Seth

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