From patchwork Wed Jun 24 08:50:33 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Alex_Benn=C3=A9e?= X-Patchwork-Id: 488010 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id AF5BB14031A for ; Wed, 24 Jun 2015 18:50:29 +1000 (AEST) Received: from localhost ([::1]:49343 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7gO3-0002MX-Ar for incoming@patchwork.ozlabs.org; Wed, 24 Jun 2015 04:50:27 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7gNn-00024T-5p for qemu-devel@nongnu.org; Wed, 24 Jun 2015 04:50:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z7gNj-0004RV-HC for qemu-devel@nongnu.org; Wed, 24 Jun 2015 04:50:11 -0400 Received: from static.88-198-71-155.clients.your-server.de ([88.198.71.155]:46986 helo=socrates.bennee.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z7gNc-00049M-Qz; Wed, 24 Jun 2015 04:50:00 -0400 Received: from localhost ([127.0.0.1] helo=zen.linaroharston) by socrates.bennee.com with esmtp (Exim 4.84) (envelope-from ) id 1Z7gPf-0001hF-BV; Wed, 24 Jun 2015 10:52:07 +0200 From: =?UTF-8?q?Alex=20Benn=C3=A9e?= To: qemu-trivial@nongnu.org Date: Wed, 24 Jun 2015 09:50:33 +0100 Message-Id: <1435135833-20016-1-git-send-email-alex.bennee@linaro.org> X-Mailer: git-send-email 2.4.3 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: alex.bennee@linaro.org X-SA-Exim-Scanned: No (on socrates.bennee.com); SAEximRunCond expanded to false X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 88.198.71.155 Cc: =?UTF-8?q?Alex=20Benn=C3=A9e?= , qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH] .gitignore: ignore GNU Global tags and clang compiledb X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Although you can't currently generate global tags via the make system it is worth suppressing them in .gitignore so they don't get accidentally included. Also the clang compile database can be ignored as this should always be generated from your current make invocation. Signed-off-by: Alex Bennée --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index aed0e1f..92bbcd4 100644 --- a/.gitignore +++ b/.gitignore @@ -102,4 +102,9 @@ cscope.* tags TAGS +GPATH +GRTAGS +GSYMS +GTAGS +compile_commands.json *~