From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id BB23D81EBD for ; Tue, 15 Nov 2016 08:25:11 -0800 (PST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga102.fm.intel.com with ESMTP; 15 Nov 2016 08:25:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,495,1473145200"; d="scan'208";a="31230085" Received: from orsmsx102.amr.corp.intel.com ([10.22.225.129]) by orsmga004.jf.intel.com with ESMTP; 15 Nov 2016 08:25:16 -0800 Received: from orsmsx156.amr.corp.intel.com (10.22.240.22) by ORSMSX102.amr.corp.intel.com (10.22.225.129) with Microsoft SMTP Server (TLS) id 14.3.248.2; Tue, 15 Nov 2016 08:25:15 -0800 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.250]) by ORSMSX156.amr.corp.intel.com ([10.22.240.22]) with mapi id 14.03.0248.002; Tue, 15 Nov 2016 08:25:15 -0800 From: "Kinney, Michael D" To: "Gao, Liming" , "edk2-devel@lists.01.org" , "Kinney, Michael D" Thread-Topic: [edk2] [PATCH v2] BaseTools gitignore: Ignore VS intermediate files *.obj and *.pdb Thread-Index: AQHSPyy4kYNdNKIk2Uej/n9+4EE0jqDaOnew Date: Tue, 15 Nov 2016 16:25:14 +0000 Message-ID: References: <1479191390-30812-1-git-send-email-liming.gao@intel.com> <1479206377-35532-1-git-send-email-liming.gao@intel.com> In-Reply-To: <1479206377-35532-1-git-send-email-liming.gao@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjEyZTQ5ZmMtZmM1MS00NGQwLTk2YTYtYjYwNGRlMmIzMzU1IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkNCVm1EQk9NZUo3emdoSGRqaXZWTlZ5YjExcVp5d1BwenRoQlRjK1lhTDQ9In0= x-originating-ip: [10.22.254.138] MIME-Version: 1.0 Subject: Re: [PATCH v2] BaseTools gitignore: Ignore VS intermediate files *.obj and *.pdb X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Nov 2016 16:25:11 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Liming, The current patch would ignore .exe in BaseTools/Bin Since you had to add .exe, should this be done in .gitignore in BaseTools/Source instead? Thanks, Mike > -----Original Message----- > From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of Li= ming Gao > Sent: Tuesday, November 15, 2016 2:40 AM > To: edk2-devel@lists.01.org > Subject: [edk2] [PATCH v2] BaseTools gitignore: Ignore VS intermediate fi= les > *.obj and *.pdb >=20 > In V2, ignore .exe and .ilk files >=20 > Cc: Yonghong Zhu > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Liming Gao > --- > BaseTools/.gitignore | 4 ++++ > 1 file changed, 4 insertions(+) >=20 > diff --git a/BaseTools/.gitignore b/BaseTools/.gitignore > index 5ca024c..a45689b 100644 > --- a/BaseTools/.gitignore > +++ b/BaseTools/.gitignore > @@ -1,5 +1,9 @@ > *.d > *.o > +*.obj > +*.pdb > +*.ilk > +*.exe > *.pyc > Source/C/VfrCompile/EfiVfrParser.cpp > Source/C/VfrCompile/EfiVfrParser.h > -- > 2.8.0.windows.1 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel