Git development
 help / color / mirror / Atom feed
* Computing the number of patches in linux-next tree
@ 2008-07-22 16:19 Tony Luck
  2008-07-22 16:28 ` Johannes Schindelin
  0 siblings, 1 reply; 6+ messages in thread
From: Tony Luck @ 2008-07-22 16:19 UTC (permalink / raw)
  To: Git Mailing List

I tried to produce a graph of the pending avalanche of patches
sitting in the linux-next tree and came up with this:

git tag | grep next- | sort | while read tag
do
        c=$(git-rev-list --no-merges $tag ^linus | wc -l)

        echo ${tag##next-} $c
done

Where "linus" is a branch that tracks Linus' tree.  But this gets the
wrong count
for old tags because maintainers who use the topic-branch method have
exactly the same commits in linux-next as eventually end up in Linus ... so
once Linus pulls these trees, the historical counts change.

What I really need at this point is the commit from Linus tree that Stephen
uses as the basis for each next-* tag.  I.e. change the loop body to

       base=`git-where-did-this-tag-branch-from-linus $tag`
       c=$(git-rev-list --no-merges $tag ^$base | wc -l)

Is this the right way to do this?
What does the "git-where-did-this-tag-branch-from-linus" command look like?

-Tony

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-07-22 18:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-22 16:19 Computing the number of patches in linux-next tree Tony Luck
2008-07-22 16:28 ` Johannes Schindelin
2008-07-22 17:04   ` Junio C Hamano
2008-07-22 17:13     ` Luck, Tony
2008-07-22 17:24     ` Johannes Schindelin
2008-07-22 18:23     ` Harvey Harrison

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox