From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756118AbcH1VZE (ORCPT ); Sun, 28 Aug 2016 17:25:04 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:34961 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755866AbcH1VZC (ORCPT ); Sun, 28 Aug 2016 17:25:02 -0400 Message-ID: <1472419498.4265.16.camel@kaarsemaker.net> Subject: Re: [Ksummit-discuss] checkkpatch (in)sanity ? From: Dennis Kaarsemaker To: Joe Perches , Julia Lawall , Alexey Dobriyan , git Cc: "Levin, Alexander" , Greg KH , Sasha Levin , "ksummit-discuss@lists.linuxfoundation.org" , LKML Date: Sun, 28 Aug 2016 23:24:58 +0200 In-Reply-To: <1472413969.26978.108.camel@perches.com> References: <1472330452.26978.23.camel@perches.com> <20160828005636.GB19088@sasha-lappy> <20160828075632.GA1852@p183.telecom.by> <1472413969.26978.108.camel@perches.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.18.5.2-0ubuntu3 Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On zo, 2016-08-28 at 12:52 -0700, Joe Perches wrote: > On Sun, 2016-08-28 at 11:59 +0200, Julia Lawall wrote: > > > > On Sun, 28 Aug 2016, Alexey Dobriyan wrote: > [] > > > > > > > > The problem is that c-h.pl generates noise in the commit history > > > and > > > makes git-blame less useful than it can be. > > Could it be that this is a problem with git blame, rather than with > > checkpatch?  Last year there was a discussion on this list about > > how there > > is an option to git blame that will cause it to step through the > > history, > > and not show only the most recent patch that has modified a given > > line. > It is more or less an ease-of-use limitation of git blame. > > There are some that want an ncurses only version of git blame > that could > use arrow-key style navigation for historical commit > line-ranges. > > git gui blame kind of works, but it's not ncurses/text based. > git-cola kind of works too, but it's not text based either. > > Are there other existing tools for blame history viewing? tig has a neat way of doing blame history digging: do a `tig blame filename`, select a line and hit the comma key to re-blame from the parent of the commit that was blamed for that line. (hat tip to Jeff King who pointed out this trick recently) D.