qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] get_maintainer.pl: Default to --no-git-fallback


From: Markus Armbruster
Subject: [Qemu-devel] [PATCH] get_maintainer.pl: Default to --no-git-fallback
Date: Mon, 20 Oct 2014 11:19:50 +0200

Contributors rely on this script to find maintainers to copy.  The
script falls back to git when no exact MAINTAINERS pattern matches.
When that happens, recent contributors get copied, which tends not be
particularly useful.  Some contributors find it even annoying.

Flip the default to "don't fall back to git".  Use --git-fallback to
ask it to fall back to git.

Signed-off-by: Markus Armbruster <address@hidden>
---
 scripts/get_maintainer.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index 38334de..ec2d16f 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -28,7 +28,7 @@ my $email_git = 0;
 my $email_git_all_signature_types = 0;
 my $email_git_blame = 0;
 my $email_git_blame_signatures = 1;
-my $email_git_fallback = 1;
+my $email_git_fallback = 0;
 my $email_git_min_signatures = 1;
 my $email_git_max_maintainers = 5;
 my $email_git_min_percent = 5;
-- 
1.9.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]