git log: add '--merges' flag to match '--no-merges'
commitb8e8db281cea9641253233a2bf8d01ab1f908abe
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 29 Jun 2009 17:28:25 +0000 (29 10:28 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 29 Jun 2009 19:32:51 +0000 (29 12:32 -0700)
tree70f88a15d03585f1f50964789874f98ce3110dab
parent4f2b15ce88b70dd9e269517a9903864393ca873b
git log: add '--merges' flag to match '--no-merges'

I do various statistics on git, and one of the things I look at is merges,
because they are often interesting events to count ("how many merges vs
how much 'real development'" kind of statistics). And you can do it with
some fairly straightforward scripting, ie

git rev-list --parents HEAD |
grep ' .* ' |
git diff-tree --always -s --pretty=oneline --stdin |
less -S

will do it.

But I finally got irritated with the fact that we can skip merges with
'--no-merges', but we can't do the trivial reverse operation.

So this just adds a '--merges' flag that _only_ shows merges. Now you can
do the above with just a

git log --merges --pretty=oneline

which is a lot simpler. It also means that we automatically get a lot of
statistics for free, eg

git shortlog -ns --merges

does exactly what you'd want it to do.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
revision.c
revision.h