From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH] git: ignore build directory Date: Tue, 22 May 2018 23:42:19 +0200 Message-ID: <1674231.4QnvL2R4ds@xps> References: <1458582978-19813-1-git-send-email-stephen@networkplumber.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org To: Stephen Hemminger Return-path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 0A4211F1C for ; Tue, 22 May 2018 23:42:21 +0200 (CEST) In-Reply-To: <1458582978-19813-1-git-send-email-stephen@networkplumber.org> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 21/03/2016 18:56, Stephen Hemminger: > The mk environment in DPDK puts files in build/ directory > so it makes sense to have a .gitignore file to skip that > directory. > > Signed-off-by: Stephen Hemminger > --- > .gitignore | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/.gitignore b/.gitignore > index e69de29..5dc652b 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -0,0 +1,5 @@ > +*.orig > +*.rej > +*~ > + > +build Seems I never replied to this proposal. I think .orig, .rej and other files should appear in git status. About the "build" directory, yes it could be ignored. But then we could ignore the default build directory and not other build directories with specific names? Looks not consistent.