From 48760409ccc8a11976892da6c7bf930144f61fda Mon Sep 17 00:00:00 2001 From: Sean Brogan Date: Tue, 24 Sep 2019 22:34:18 -0700 Subject: [PATCH] .gitignore: Ignore python compiled files, extdeps, and vscode 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 Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Laszlo Ersek Reviewed-by: Liming Gao --- .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.39.2