diff options
author | Sean Brogan <sean.brogan@microsoft.com> | 2019-09-24 22:34:18 -0700 |
---|---|---|
committer | Michael D Kinney <michael.d.kinney@intel.com> | 2019-11-11 13:01:25 -0800 |
commit | 48760409ccc8a11976892da6c7bf930144f61fda (patch) | |
tree | b974610f790f6fa3d16c4e555cd218b904db3dcb | |
parent | 021eb1820e31874618cfda0785f7eae2f0ec7ba9 (diff) | |
download | edk2-48760409ccc8a11976892da6c7bf930144f61fda.tar.gz |
.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 <afish@apple.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Signed-off-by: Kinney <michael.d.kinney@intel.com>
Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | .gitignore | 6 |
1 files changed, 5 insertions, 1 deletions
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/
|