Re: whomto.pl -- finding out whom to send patches to

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Vegard Nossum <vegard.nossum@...>
Cc: <linux-kernel@...>, Jan Engelhardt <jengelh@...>, Sverre Rabbelier <alturin@...>, <git@...>
Date: Thursday, May 29, 2008 - 2:20 pm

> I've written this perl script that takes a patch as input and prints the

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



--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
whomto.pl -- finding out whom to send patches to, Vegard Nossum, (Thu May 29, 5:00 pm)
Re: whomto.pl -- finding out whom to send patches to, Andrea Righi, (Fri May 30, 3:58 am)
Re: whomto.pl -- finding out whom to send patches to, Vegard Nossum, (Sat May 31, 6:03 am)
Re: whomto.pl -- finding out whom to send patches to, Junio C Hamano, (Thu May 29, 7:33 pm)
Re: whomto.pl -- finding out whom to send patches to, Vegard Nossum, (Sat May 31, 6:33 am)
Re: whomto.pl -- finding out whom to send patches to, Jesper Juhl, (Thu May 29, 6:19 pm)
Re: whomto.pl -- finding out whom to send patches to, Joe Perches, (Thu May 29, 2:20 pm)