From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 86F87F91D for ; Mon, 19 Dec 2016 18:14:38 +0100 (CET) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP; 19 Dec 2016 09:14:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,374,1477983600"; d="scan'208";a="1074069894" Received: from bricha3-mobl3.ger.corp.intel.com ([10.237.221.64]) by orsmga001.jf.intel.com with SMTP; 19 Dec 2016 09:14:35 -0800 Received: by (sSMTP sendmail emulation); Mon, 19 Dec 2016 17:14:34 +0000 Date: Mon, 19 Dec 2016 17:14:34 +0000 From: Bruce Richardson To: "Mcnamara, John" Cc: Thomas Monjalon , Baruch Siach , "Yigit, Ferruh" , "dev@dpdk.org" Message-ID: <20161219171434.GA188176@bricha3-MOBL3.ger.corp.intel.com> References: <2dfce93f986deb95eb5ac4773e020005d45f0c48.1481629710.git.baruch@tkos.co.il> <1984848.mjZxypNVZ9@xps13> <20161219161422.GB166228@bricha3-MOBL3.ger.corp.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Organization: Intel Research and =?iso-8859-1?Q?De=ACvel?= =?iso-8859-1?Q?opment?= Ireland Ltd. User-Agent: Mutt/1.7.1 (2016-10-04) Subject: Re: [dpdk-dev] [PATCH] gitignore: ignore top level build/ directory X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Dec 2016 17:14:39 -0000 On Mon, Dec 19, 2016 at 04:50:57PM +0000, Mcnamara, John wrote: > > > > -----Original Message----- > > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson > > Sent: Monday, December 19, 2016 4:14 PM > > To: Thomas Monjalon > > Cc: Baruch Siach ; Yigit, Ferruh > > ; dev@dpdk.org > > Subject: Re: [dpdk-dev] [PATCH] gitignore: ignore top level build/ > > directory > > > > On Mon, Dec 19, 2016 at 03:05:20PM +0100, Thomas Monjalon wrote: > > > 2016-12-13 12:02, Ferruh Yigit: > > > > On 12/13/2016 11:48 AM, Baruch Siach wrote: > > > > > RTE_OUTPUT defaults to build/. > > > > > > > > > > Signed-off-by: Baruch Siach > > > > > > > > There is a similar patch: > > > > http://dpdk.org/dev/patchwork/patch/11637/ > > > > > > > > If you want you can review/comment that one too. > > > > > > Yes, sorry I've never commented above patch. > > > > > > I do not like filling .gitignore because I prefer seeing what is built > > > or copied or whatever with "git status". > > > What is really the benefit of .gitignore? > > > > I take the opposite view. I only like to see files that I actually care > > about in the git status. Any build artifacts should be ignored by git as > > they are not files that it ever should track. That way doing a build does > > not change the status of the repo as git sees it. > > As a workaround I have the following in my .gitconfig: > > [core] > excludesfile = ~/.gitignore > > Then I put the ignore rules in ~/.gitignore. > > John > Yes, I have something similar done, so this is not a problem for me personally. I just find it strange that we don't make more use of gitignore in DPDK. The file's name itself seems to imply that it should be used to list out files that git should not track, and build output is definitely one of those. /Bruce