From bddc75279f65215d3495b787c800dec1a8e25e41 Mon Sep 17 00:00:00 2001 From: Sami Ahmed Date: Tue, 11 Aug 2026 23:43:18 -0700 Subject: [PATCH] [grade=B] Add .gitignore for Python cache, tmp, build dirs, venv, ISO, tarballs --- .gitignore | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b64968c --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# Python +__pycache__/ +*.pyc + +# Temporary / scratch +.tmp +*.tmp + +# Build output directories +/work/ +/out/ +build/ + +# Python virtualenv +.venv/ + +# Build artifacts +*.iso +*.tar.gz