From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55201) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xg98B-0004bs-Te for qemu-devel@nongnu.org; Mon, 20 Oct 2014 05:20:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xg986-0001xd-BP for qemu-devel@nongnu.org; Mon, 20 Oct 2014 05:19:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59745) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xg986-0001xQ-1s for qemu-devel@nongnu.org; Mon, 20 Oct 2014 05:19:54 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s9K9JqXw007828 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Mon, 20 Oct 2014 05:19:53 -0400 From: Markus Armbruster Date: Mon, 20 Oct 2014 11:19:50 +0200 Message-Id: <1413796790-30579-1-git-send-email-armbru@redhat.com> Subject: [Qemu-devel] [PATCH] get_maintainer.pl: Default to --no-git-fallback List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com 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 --- 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