From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga09.intel.com (mga09.intel.com []) by mx.groups.io with SMTP id smtpd.web11.1463.1573089233798338813 for ; Wed, 06 Nov 2019 17:13:54 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: michael.d.kinney@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Nov 2019 17:13:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,276,1569308400"; d="scan'208";a="205520574" Received: from unknown (HELO mdkinney-MOBL2.amr.corp.intel.com) ([10.241.98.74]) by orsmga003.jf.intel.com with ESMTP; 06 Nov 2019 17:13:54 -0800 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Sean Brogan , Andrew Fish , Laszlo Ersek , Leif Lindholm , Kinney , Philippe Mathieu-Daude Subject: [Patch v4 02/22] .gitignore: Ignore python compiled files, extdeps, and vscode Date: Wed, 6 Nov 2019 17:13:29 -0800 Message-Id: <20191107011349.16524-3-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.21.0.windows.1 In-Reply-To: <20191107011349.16524-1-michael.d.kinney@intel.com> References: <20191107011349.16524-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Sean Brogan 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 Reviewed-by: Leif Lindholm Reviewed-by: Philippe Mathieu-Daude --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 97f22c348c..1dd30c1410 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ Build/ -tags/ .DS_Store +*_extdep/ +*.pyc +__pycache__/ +tags/ +.vscode/ -- 2.21.0.windows.1