On Fri, Jan 16, 2015 at 3:58 PM, Ramkumar Ramachandra <artagnon@xxxxxxxxx> wrote: > Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> > --- > diff --git a/contrib/contacts/git-contacts b/contrib/contacts/git-contacts > index dbe2abf..b06f2e1 100755 > --- a/contrib/contacts/git-contacts > +++ b/contrib/contacts/git-contacts > @@ -8,12 +8,16 @@ > use strict; > use warnings; > use IPC::Open2; > +use Getopt::Long qw/:config gnu_getopt no_ignore_case auto_abbrev/; Most of the rest of the codebase uses qw(...) rather than qw/.../. > my $since = '5-years-ago'; > my $min_percent = 10; > my $labels_rx = qr/Signed-off-by|Reviewed-by|Acked-by|Cc/i; > my %seen; > > +my $rv = GetOptions('since=s' => \$since, 'min-percent=i' => \$min_percent); > +exit 1 if (!$rv); This would make more sense if moved down to the point where the script arguments are processed (just before the 'if (!@ARGV)' line, for instance). These new options should be documented in git-contacts.txt. Also, the "Limitations" section of the documentation says that these values are currently hard-coded, so it deserves an update as well. > sub format_contact { > my ($name, $email) = @_; > return "$name <$email>"; > -- > 2.2.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html