From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mx.groups.io with SMTP id smtpd.web11.1931.1572497014183990583 for ; Wed, 30 Oct 2019 21:43:34 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.126, mailfrom: michael.d.kinney@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Oct 2019 21:43:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,250,1569308400"; d="scan'208";a="230715125" Received: from orsmsx109.amr.corp.intel.com ([10.22.240.7]) by fmsmga002.fm.intel.com with ESMTP; 30 Oct 2019 21:43:33 -0700 Received: from orsmsx151.amr.corp.intel.com (10.22.226.38) by ORSMSX109.amr.corp.intel.com (10.22.240.7) with Microsoft SMTP Server (TLS) id 14.3.439.0; Wed, 30 Oct 2019 21:43:32 -0700 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.28]) by ORSMSX151.amr.corp.intel.com ([169.254.7.36]) with mapi id 14.03.0439.000; Wed, 30 Oct 2019 21:43:32 -0700 From: "Michael D Kinney" To: Leif Lindholm , "Kinney, Michael D" CC: "devel@edk2.groups.io" , Sean Brogan , Andrew Fish , Laszlo Ersek Subject: Re: [Patch v3 02/22] .gitignore: Ignore python compiled files, extdeps, and vscode Thread-Topic: [Patch v3 02/22] .gitignore: Ignore python compiled files, extdeps, and vscode Thread-Index: AQHVjpLSjzK/uK8390ShMpx/R3nmnqdy6/SAgAFCRrA= Date: Thu, 31 Oct 2019 04:43:31 +0000 Message-ID: References: <20191029195517.20028-1-michael.d.kinney@intel.com> <20191029195517.20028-3-michael.d.kinney@intel.com> <20191030022939.GT16820@bivouac.eciton.net> In-Reply-To: <20191030022939.GT16820@bivouac.eciton.net> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [10.22.254.138] MIME-Version: 1.0 Return-Path: michael.d.kinney@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Leif, Thanks. I agree. I will split it out. Mike > -----Original Message----- > From: Leif Lindholm > Sent: Tuesday, October 29, 2019 7:30 PM > To: Kinney, Michael D > Cc: devel@edk2.groups.io; Sean Brogan > ; Andrew Fish > ; Laszlo Ersek > Subject: Re: [Patch v3 02/22] .gitignore: Ignore python > compiled files, extdeps, and vscode >=20 > On Tue, Oct 29, 2019 at 12:54:57PM -0700, Michael D > Kinney wrote: > > From: Sean Brogan > > > > https://bugzilla.tianocore.org/show_bug.cgi?id=3D2315 > > > > Update .gitignore to ignore .pyc files and __pycache__ > directories. > > Python based plugins can be added to any package or > platform, so these > > files and directories may be present outside of > BaseTools. > > > > Ignore _extdep directories that are generated by the > pytool external > > dependency feature. > > > > Ignore .vscode directories generated by the VS Code > editor. > > > > Cc: Andrew Fish > > Cc: Laszlo Ersek > > Cc: Leif Lindholm > > Signed-off-by: Kinney >=20 > Reviewed-by: Leif Lindholm >=20 > (This one could be merged independently of rest of set, > it's useful on its own.) >=20 > > --- > > .gitignore | 5 +++++ > > 1 file changed, 5 insertions(+) > > > > diff --git a/.gitignore b/.gitignore > > index 97f22c348c..71679478ac 100644 > > --- a/.gitignore > > +++ b/.gitignore > > @@ -1,3 +1,8 @@ > > Build/ > > tags/ > > .DS_Store > > +*.pyc > > +__pycache__/ > > +*_extdep/ > > + > > +.vscode/ > > -- > > 2.21.0.windows.1 > >