From 517019a55302b1222c152ee05226d55883050642 Mon Sep 17 00:00:00 2001 From: Mike Beaton Date: Sat, 28 Sep 2024 05:21:58 +0100 Subject: [PATCH] .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 --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1dd30c1410..274a66ce80 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Build/ __pycache__/ tags/ .vscode/ +.venv/