]> git.proxmox.com Git - mirror_edk2.git/commitdiff
.gitignore: Ignore python compiled files, extdeps, and vscode
authorSean Brogan <sean.brogan@microsoft.com>
Wed, 25 Sep 2019 05:34:18 +0000 (22:34 -0700)
committerMichael D Kinney <michael.d.kinney@intel.com>
Mon, 11 Nov 2019 21:01:25 +0000 (13:01 -0800)
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>
.gitignore

index 97f22c348c10c54174368e361cfa542faa462b05..1dd30c1410662846ad1177a7a4bec57cc14f101f 100644 (file)
@@ -1,3 +1,7 @@
 Build/\r
-tags/\r
 .DS_Store\r
+*_extdep/\r
+*.pyc\r
+__pycache__/\r
+tags/\r
+.vscode/\r