From patchwork Thu Feb 16 19:34:26 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michel Thierry X-Patchwork-Id: 9578227 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 77E7860209 for ; Thu, 16 Feb 2017 19:34:30 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6A27828665 for ; Thu, 16 Feb 2017 19:34:30 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5DAC728669; Thu, 16 Feb 2017 19:34:30 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.2 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id E075528665 for ; Thu, 16 Feb 2017 19:34:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4FD186E2DB; Thu, 16 Feb 2017 19:34:28 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by gabe.freedesktop.org (Postfix) with ESMTPS id 33F1C6E2DB for ; Thu, 16 Feb 2017 19:34:27 +0000 (UTC) Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga105.fm.intel.com with ESMTP; 16 Feb 2017 11:34:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.35,169,1484035200"; d="scan'208";a="66692074" Received: from relo-linux-11.sc.intel.com ([10.3.160.214]) by fmsmga006.fm.intel.com with ESMTP; 16 Feb 2017 11:34:26 -0800 From: Michel Thierry To: intel-gfx@lists.freedesktop.org Date: Thu, 16 Feb 2017 11:34:26 -0800 Message-Id: <20170216193426.23193-1-michel.thierry@intel.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <9ac17731-f038-3acd-4708-e8d6f24ac716@intel.com> References: <9ac17731-f038-3acd-4708-e8d6f24ac716@intel.com> Subject: [Intel-gfx] [PATCH i-g-t v3] gitignore: Add files starting with . X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Virus-Scanned: ClamAV using ClamSMTP I cant be the only one that have added .tags by mistake. v2: Do not ignore .gitignore v3: Move !.gitignore at the end, otherwise it'll ignore new .gitignore files in another directory (Petri) Cc: Petri Latvala Cc: Joonas Lahtinen Signed-off-by: Michel Thierry Reviewed-by: Petri Latvala --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 6204965a..de79020f 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,7 @@ core *.swo *.swp *.dirstamp +.* cscope.* TAGS build-aux/ @@ -93,3 +94,8 @@ intel-gpu-tools-*/ piglit results + +# +# git files that we don't want to ignore even it they are dot-files +# +!.gitignore