From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35700) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cClZ7-0000F4-Cb for qemu-devel@nongnu.org; Fri, 02 Dec 2016 05:59:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cClZ4-0000GR-CL for qemu-devel@nongnu.org; Fri, 02 Dec 2016 05:59:41 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55314) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cClZ4-0000FR-6z for qemu-devel@nongnu.org; Fri, 02 Dec 2016 05:59:38 -0500 Message-ID: <1480676373.13905.4.camel@redhat.com> From: Gerd Hoffmann Date: Fri, 02 Dec 2016 11:59:33 +0100 In-Reply-To: <20161202104037.5456-1-lersek@redhat.com> References: <20161202104037.5456-1-lersek@redhat.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Mime-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH] scripts: add "git.orderfile" for ordering diff hunks by pathname patterns List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laszlo Ersek Cc: qemu devel list , "Michael S. Tsirkin" , Eric Blake , Fam Zheng , John Snow , Stefan Hajnoczi > git config diff.orderFile scripts/git.orderfile > diff --git a/scripts/git.orderfile b/scripts/git.orderfile > new file mode 100644 > index 000000000000..600a2e4fc540 > --- /dev/null > +++ b/scripts/git.orderfile > @@ -0,0 +1,15 @@ Is it possible to have comments in here? So we can place the git config command above into into this file too? > +*.txt > +configure > +GNUmakefile > +makefile > +Makefile We also have Makefile.objs and Makefile.target, so "Makefile*" (like the first version had IIRC) should work better. > +*.mak > +qapi-schema*.json > +qapi/*.json > +include/qapi/visitor.h > +include/qapi/visitor-impl.h > +scripts/qapi.py > +scripts/*.py > +*.h > +qapi/qapi-visit-core.c I guess there is more which could be placed here (i.e. files holding infrastructure which makes sense to see first). But we can easily refine that incrementally. That is the point to have this file in the repo in the first place ;) cheers, Gerd