[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1410885094.16519.6.camel@joe-AO725>
Date: Tue, 16 Sep 2014 09:31:34 -0700
From: Joe Perches <joe@...ches.com>
To: Fabian Frederick <fabf@...net.be>
Cc: Andrew Morton <akpm@...ux-foundation.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/1] checkpatch: check for subject uniqueness in git
repository.
On Tue, 2014-09-16 at 18:15 +0200, Fabian Frederick wrote:
> > On 16 September 2014 at 05:22 Joe Perches <joe@...ches.com> wrote:
> > On Mon, 2014-09-15 at 20:43 +0200, Fabian Frederick wrote:
> > > Adding patch subject uniqueness check in checkpatch --strict mode.
> > > See Documentation/SubmittingPatches/globally-unique identifier.
> >
> > Perhaps something like this?
[]
> > diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
[]
> > + if ($check && $#git_commits < 1 && which("git") && -e ".git") {
> > + my $output = `git log --no-color --format='%H %s' 2>&1`;
> > + $output =~ s/^\s*//gm;
> > + @git_commits = split("\n", $output);
> > + }
> Perfect ! :)
Except for that _really, really_ long time to do the
git log of all commits...
Maybe the git log should be enabled only with another
command-line option.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists