[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <5213A516.9020103@gmail.com>
Date: Tue, 20 Aug 2013 11:19:18 -0600
From: David Ahern <dsahern@...il.com>
To: Arnaldo Carvalho de Melo <acme@...stprotocols.net>
CC: linux-kernel@...r.kernel.org
Subject: Re: [PATCH] perf trace: Make command line arguments consistent with
perf-record
On 8/20/13 11:11 AM, Arnaldo Carvalho de Melo wrote:
>> grrrr... Added a check in the git pre-commit hook to remind me:
>>
>> $ git commit -a
>> changing command line arguments. Did you update the man page?
>
> Hey, post it somewhere, please! I'd like to use it too. :-)
$ cat .git/hooks/pre-commit
#!/bin/bash
git diff --cached | egrep -q 'OPT_'
if [ $? -eq 0 ]
then
git diff --cached | egrep -q '^diff.*tools/perf/Documentation'
if [ $? -ne 0 ]
then
echo "changing command line arguments. Did you update the man page?"
exit 1
fi
fi
exec git diff --cached | scripts/checkpatch.pl --no-signoff -q -
--
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