From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9400621B36; Tue, 22 May 2018 17:42:21 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 22 May 2018 17:42:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=aBzYu4XAnzkJc31MixgquzIC3n 24MvQL9VbRiiPxTCM=; b=Miyz1dGABq0SrxBRAefsvxxO0W9OpBq6JVJKb7Mla3 W4nw6aN5Zlc8yWZIUkhKSvcop255MhbVWW/Ex24HotE6umK1s3XcT67PhCD3tcy0 RI7dlrlgv/Yh0eQFS49ju5GyLgSVNd2y2tIN4Ba+v1AFL3e3rKFtq+l25hZP5gft U= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=aBzYu4 XAnzkJc31MixgquzIC3n24MvQL9VbRiiPxTCM=; b=jsQ/KEZYVKflOAYVIIB7tx 0I3KQ/RwD74i7xfoBdwC09atYrRPJ6jQMF7/DkbKUdzx+kN7MRktxFCpsZSp50TW l3KkwsH2SRHvsZsTNrtKnbcSViLlGC8lFNPLMNRAgQYX+Krl9UQ0ARDDDev90Vfh PI+BsCmw8l7QRgrVm4p7wEVyy6rznnwwY9TYbIBylbn047y1ju8XEf51INeCUP1J +n4DRB2JoJVlyFPq9L/JYVxk5ZHjRqIgtpGPFA7j5l+arzW6zgm6Pv3o+2BXpc4Y SI1zR7Vo+LXOjIqdzTN2uyzna4+zypRBkqPWK89Qz59WF1WiExzxWqaRTOu6O8Wg == X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 15A45E4115; Tue, 22 May 2018 17:42:20 -0400 (EDT) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org Date: Tue, 22 May 2018 23:42:19 +0200 Message-ID: <1674231.4QnvL2R4ds@xps> In-Reply-To: <1458582978-19813-1-git-send-email-stephen@networkplumber.org> References: <1458582978-19813-1-git-send-email-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] git: ignore 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: Tue, 22 May 2018 21:42:22 -0000 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.