On Mon, May 14, 2007 at 11:21:27AM -0400, J. Bruce Fields wrote:
+Suppose you want to know how many commits you've made on "mybranch"
+since it diverged from "origin":
+
+-------------------------------------------------
+$ git log --pretty=oneline origin..maint | wc -l
+-------------------------------------------------
Shouldn't that be mybranch instead of maint?
+Alternatively you may often see this sort of thing done with the
+lower-level command gitlink:git-rev-list[1], which just lists the SHA1's
+of all the given commits:
+
+-------------------------------------------------
+$ git rev-list origin..maint | wc -l
+-------------------------------------------------
Same here.
Gruesse,
--
Frank Lichtenheld [off-list ref]
www: http://www.djpig.de/