From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758875AbYE2WLq (ORCPT ); Thu, 29 May 2008 18:11:46 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754282AbYE2WLf (ORCPT ); Thu, 29 May 2008 18:11:35 -0400 Received: from 136-022.dsl.labridge.com ([206.117.136.22]:2580 "EHLO mail.perches.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1753918AbYE2WLf (ORCPT ); Thu, 29 May 2008 18:11:35 -0400 Subject: Re: whomto.pl -- finding out whom to send patches to From: Joe Perches To: Vegard Nossum Cc: linux-kernel@vger.kernel.org, Jan Engelhardt , Sverre Rabbelier , git@vger.kernel.org In-Reply-To: <20080529210018.GA5508@damson.getinternet.no> References: <20080529210018.GA5508@damson.getinternet.no> Content-Type: text/plain Date: Thu, 29 May 2008 11:20:33 -0700 Message-Id: <1212085233.27103.54.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3-1.2mdv2008.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > I've written this perl script that takes a patch as input and prints the > authors/committers of the affected lines, using git-blame as the back end. Nice enough script. It's unfortunate that it can't output the appropriate mailing lists. I think the shell script that Linus gave awhile ago: http://lkml.org/lkml/2007/8/14/276 #!/bin/sh git log --since=6.months.ago -- "$@" | grep -i '^ [-a-z]*by:.*@' | sort | uniq -c | sort -r -n | head (Maybe you want to add a grep -v '\(Linus Torvalds\)\|\(Andrew Morton\)' might work just as well. I still prefer the file pattern match in MAINTAINERS, or another external file, and/or data stored directly into GIT via gitattributes approaches. This script can give maintainer, mailing lists, and git contact information for patches or files. http://lkml.org/lkml/2007/8/20/352 The script works with git-send-email to cc the appropriate parties. This script and git repository is very old and probably doesn't apply... git pull git://repo.or.cz/linux-2.6/trivial-mods.git get_maintainer