From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wm1-f67.google.com (mail-wm1-f67.google.com [209.85.128.67]) by mx.groups.io with SMTP id smtpd.web12.257.1572402582822592106 for ; Tue, 29 Oct 2019 19:29:43 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=Y230S81a; spf=pass (domain: linaro.org, ip: 209.85.128.67, mailfrom: leif.lindholm@linaro.org) Received: by mail-wm1-f67.google.com with SMTP id g24so408718wmh.5 for ; Tue, 29 Oct 2019 19:29:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=Mv1j9ng3xB5Iv7IhrgQSg2fkZtS8rQGd3UBzrb2S6Mg=; b=Y230S81aAzZ37CKZjkxwEGKwwVoIoTcFPSMGtXmkecO8I/ApJeNB4cDxOMsVa7l0XP K3JP3U2i2g0Lnwqb4qpmmVEyyAG6vDc9Yx687u4lEKJnVXS0Ds0KL3wva1gbhJRv9TmZ uvL7jbcl6Dkkv5cGe/4nccqKrE40hCpO8NJBGa0R4MyNy6oWYWOhfpakcO+zVyxkdalp Q/lx9vc4BVhfIcTE5f8o4k5SGuEXq+QybKXPU7VkYhEX7O/Eu6uBFJfc8AeemJyuYAsj 7OvmNnRDMgTfmtJwccVN0SvXp6kEPfZrxL4GaHAMfpoxxxU5z8GtSK4QjhA2DoIe6l3L ispA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=Mv1j9ng3xB5Iv7IhrgQSg2fkZtS8rQGd3UBzrb2S6Mg=; b=T3KmO3ddlg2hQU0XUDiSLc3V/BR24wkz+DQCo/8sgnmYA66zWBgj+CRSFe6F77k8xW qUOg9lPJ4h5C/zy1Gg8ptuFdmktJslykmGq7PAlM+jsC41v0wEbD9rfh7c20n9LT1gsT fFaGhUBN9dX2zpH+tiPAq2DF0AOYcslmUW+mvjQ+bXcLT/bXtvdtPdm9mu+0UUu0uISH 7IH/gLHTM50s4HIwBM4CgaH33MkzNA4uOOyGgoQZrCqcQTlkzngkS+s4ZUI65HWisQbz 6H7o4lpPwCIdbgmvFYRRUdyLrIZYYKr1hjoE5fP5IMQk1Thxvhg18uvgM3rMz3OIosLj o9NQ== X-Gm-Message-State: APjAAAXjgqlXsGOuRe8dSuOdyecJLR+uoQrFncuJEfn8ERtJkhekYRyW z0rh04Q0UGe4JjjfJgfPN2p4dg== X-Google-Smtp-Source: APXvYqxi1vIfguMByJnygaGITvB2XugaYqUlDEjz85ig7C46MCCGOEfkkDWbcfk13faWlqz2fCx3/Q== X-Received: by 2002:a1c:44b:: with SMTP id 72mr6582547wme.72.1572402581305; Tue, 29 Oct 2019 19:29:41 -0700 (PDT) Return-Path: Received: from bivouac.eciton.net (bivouac.eciton.net. [2a00:1098:0:86:1000:23:0:2]) by smtp.gmail.com with ESMTPSA id q12sm781749wrw.91.2019.10.29.19.29.40 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 29 Oct 2019 19:29:40 -0700 (PDT) Date: Wed, 30 Oct 2019 02:29:39 +0000 From: "Leif Lindholm" To: Michael D Kinney 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 Message-ID: <20191030022939.GT16820@bivouac.eciton.net> References: <20191029195517.20028-1-michael.d.kinney@intel.com> <20191029195517.20028-3-michael.d.kinney@intel.com> MIME-Version: 1.0 In-Reply-To: <20191029195517.20028-3-michael.d.kinney@intel.com> User-Agent: Mutt/1.10.1 (2018-07-13) Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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=2315 > > 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 (This one could be merged independently of rest of set, it's useful on its own.) > --- > .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 >