From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: michael.a.kubacki@intel.com) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by groups.io with SMTP; Tue, 24 Sep 2019 13:55:59 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Sep 2019 13:55:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,545,1559545200"; d="scan'208";a="193557098" Received: from makuback-desk1.amr.corp.intel.com ([10.7.159.162]) by orsmga006.jf.intel.com with ESMTP; 24 Sep 2019 13:55:58 -0700 From: "Kubacki, Michael A" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Liming Gao , Michael D Kinney , Leif Lindholm Subject: [edk2-platforms][PATCH V1 1/1] edk2-platforms: Add __pycache__ to .gitignore Date: Tue, 24 Sep 2019 13:55:47 -0700 Message-Id: <20190924205547.18156-1-michael.a.kubacki@intel.com> X-Mailer: git-send-email 2.16.2.windows.1 REF:https://bugzilla.tianocore.org/show_bug.cgi?id=2217 Python build is enabled for some platform code leading to .pyc files created in __pycache__ directories. This change adds the __pycache__ directory to a .gitignore file to allow git to ignore Python cache files. Cc: Ard Biesheuvel Cc: Liming Gao Cc: Michael D Kinney Cc: Leif Lindholm Signed-off-by: Michael Kubacki --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..58200d4d73 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__/ -- 2.16.2.windows.1