diff options
author | Mike Beaton <mjsbeaton@gmail.com> | 2024-09-28 05:21:58 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-09-30 10:24:14 +0000 |
commit | 517019a55302b1222c152ee05226d55883050642 (patch) | |
tree | 58456ef18b45077295f08d39ed2d939cc646c7f4 | |
parent | a6b472131e6f49ec6ec309a06fed3b70b97a8602 (diff) | |
download | edk2-517019a55302b1222c152ee05226d55883050642.tar.gz edk2-517019a55302b1222c152ee05226d55883050642.tar.bz2 edk2-517019a55302b1222c152ee05226d55883050642.zip |
.gitignore: Ignore Python venv files
Since presumably quite a few people will use stuart to build EDK 2,
and since the recommended approach in that case is to use a python
venv, it is much more convenient if these files are ignored by default
in EDK 2, rather than requiring a manual update to .git/info/exclude
each time the repo is cloned, as effectively suggested in the current
How to Build With Stuart instructions on the tianocore wiki.
Signed-off-by: Mike Beaton <mjsbeaton@gmail.com>
-rw-r--r-- | .gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 1dd30c1410..274a66ce80 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Build/ __pycache__/
tags/
.vscode/
+.venv/
|