From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:34134) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDLWq-0006Vx-Se for qemu-devel@nongnu.org; Sun, 16 Sep 2012 16:33:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TDLWo-0004Mp-7U for qemu-devel@nongnu.org; Sun, 16 Sep 2012 16:33:20 -0400 Received: from v220110690675601.yourvserver.net ([78.47.199.172]:48784) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TDLWo-0004Lr-1S for qemu-devel@nongnu.org; Sun, 16 Sep 2012 16:33:18 -0400 Message-ID: <5056378B.30403@weilnetz.de> Date: Sun, 16 Sep 2012 22:33:15 +0200 From: Stefan Weil MIME-Version: 1.0 References: <1347826267-5214-1-git-send-email-vapier@gentoo.org> In-Reply-To: <1347826267-5214-1-git-send-email-vapier@gentoo.org> Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] ignore more generated files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Mike Frysinger Cc: qemu-devel@nongnu.org Am 16.09.2012 22:11, schrieb Mike Frysinger: > Signed-off-by: Mike Frysinger > --- > .gitignore | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/.gitignore b/.gitignore > index 824c0d2..25c134e 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -11,6 +11,7 @@ trace-dtrace.dtrace > *-darwin-user > *-linux-user > *-bsd-user > +libcacard/vscclient > libdis* > libhw32 > libhw64 > @@ -51,7 +52,11 @@ test-string-output-visitor > test-visitor-serialization > fsdev/virtfs-proxy-helper.1 > fsdev/virtfs-proxy-helper.pod > +a.out* > .gdbinit > +.gdb_history > +core > +gmon.out > *.a > *.aux > *.cp > @@ -79,6 +84,9 @@ fsdev/virtfs-proxy-helper.pod > *.orig > .pc > patches > +*.diff > +*.patch > +*.rej > pc-bios/bios-pq/status > pc-bios/vgabios-pq/status > pc-bios/optionrom/linuxboot.bin IMHO .gitignore should only contain files which are generated by a normal QEMU build. a.out*, .gdb_history, core, *.diff, *patch, *.rej are not QEMU specific and should be ignored in the user's GIT configuration. QEMU's .gitignore already contains too many entries which don't belong there.Maybe it would be a good idea to remove those entries and add a comment which explains what entries are ok. Regards Stefan W.