From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH] gitignore: ignore top level build/ directory Date: Thu, 24 May 2018 14:08:56 -0700 Message-ID: <20180524140856.6cb6c36f@xeon-e3> References: <2dfce93f986deb95eb5ac4773e020005d45f0c48.1481629710.git.baruch@tkos.co.il> <20161219171434.GA188176@bricha3-MOBL3.ger.corp.intel.com> <7564883.QMXTE167Kr@xps> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: Bruce Richardson , Baruch Siach , "Mcnamara, John" , "Yigit, Ferruh" , "dev@dpdk.org" To: Thomas Monjalon Return-path: Received: from mail-pl0-f66.google.com (mail-pl0-f66.google.com [209.85.160.66]) by dpdk.org (Postfix) with ESMTP id 5355928F3 for ; Thu, 24 May 2018 23:09:00 +0200 (CEST) Received: by mail-pl0-f66.google.com with SMTP id ay10-v6so1796597plb.1 for ; Thu, 24 May 2018 14:09:00 -0700 (PDT) In-Reply-To: <7564883.QMXTE167Kr@xps> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, 22 May 2018 23:45:31 +0200 Thomas Monjalon wrote: > 19/12/2016 18:14, Bruce Richardson: > > On Mon, Dec 19, 2016 at 04:50:57PM +0000, Mcnamara, John wrote: > > > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Bruce Richardson > > > > 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. > > I don't understand why we should hide the default build directory and not > the other ones with different names. > It would be perceived as inconsistent and confusing. Almost all users will use the standard build/ directory. The idea of gitignore is to allow git status to work correctly. Looking at systemd, which also uses meson, the .gitignore file is: *.a *.cache *.gch *.log *.o *.plist *.py[co] *.stamp *.swp *.trs *~ .config.args .deps/ /*.gcda /*.gcno /*.tar.bz2 /*.tar.gz /*.tar.xz /GPATH /GRTAGS /GSYMS /GTAGS /TAGS /ID /build* /coverage/ /image.raw /image.raw.cache-pre-dev /image.raw.cache-pre-inst /install-tree /mkosi.builddir/ /mkosi.output/ /tags __pycache__/