commit | 11ecf53c97863a0609db3816d82f1d0ddf3d2bc2 | [log] [tgz] |
---|---|---|
author | Joe Perches <[email protected]> | Mon Sep 21 17:04:22 2009 -0700 |
committer | Linus Torvalds <[email protected]> | Tue Sep 22 07:17:46 2009 -0700 |
tree | bea4e471f97f7a5535e03c1e38cdbd588b1a747e | |
parent | 42498316132e89ca2835b977a7cfb32a83e97b35 [diff] |
scripts/get_maintainer.pl: add --remove-duplicates Allow control over the elimination of duplicate email names and addresses --remove-duplicates will use the first email name or address presented --noremove-duplicates will emit all names and addresses --remove-duplicates is enabled by default For instance: $ ./scripts/get_maintainer.pl -f drivers/char/tty_ioctl.c Greg Kroah-Hartman <[email protected]> Alan Cox <[email protected]> Mike Frysinger <[email protected]> Alexey Dobriyan <[email protected]> [email protected] $ ./scripts/get_maintainer.pl -f --noremove-duplicates drivers/char/tty_ioctl.c Greg Kroah-Hartman <[email protected]> Alan Cox <[email protected]> Alan Cox <[email protected]> Alan Cox <[email protected]> Mike Frysinger <[email protected]> Alexey Dobriyan <[email protected]> [email protected] Using --remove-duplicates could eliminate multiple maintainers that share the same name but not the same email address. Signed-off-by: Joe Perches <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>