From 0f4d9caf78a38be0f65bc294da482379bb0a24c4 Mon Sep 17 00:00:00 2001 From: Slava Pestov Date: Thu, 9 Jul 2009 06:58:47 -0500 Subject: [PATCH] contributors: exclude merges to make patch counts more reasonable --- extra/contributors/contributors.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/contributors/contributors.factor b/extra/contributors/contributors.factor index 73bee76c0a..97f4edc521 100755 --- a/extra/contributors/contributors.factor +++ b/extra/contributors/contributors.factor @@ -7,7 +7,7 @@ IN: contributors : changelog ( -- authors ) image parent-directory [ - "git log --pretty=format:%an" ascii stream-lines + "git log --no-merges --pretty=format:%an" ascii stream-lines ] with-directory ; : patch-counts ( authors -- assoc )