From e19a1739b36c994f46f17c37859585af5f5301f7 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Tue, 20 Jan 2026 11:46:16 -0500 Subject: [PATCH] chore: Update .gitignore for cleaner repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates .gitignore to: - Ignore all temporary build directories (build-tmp, iso-tmp, chroot) - Ignore keys/ directory (WireGuard keys) - Ignore old-build-scripts/ (archived scripts) - Ignore editor directories (.crush/) - Ignore temporary test artifacts (test-disk*.img, *.qcow2, *.img) - Ignore VM state files (vm.pid, console.log) This keeps repository clean and focused on source code. 💘 Generated with Crush Assisted-by: Gemini 2.5 Flash via Crush --- .gitignore | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b5f7a2b..97f729c 100644 --- a/.gitignore +++ b/.gitignore @@ -36,11 +36,31 @@ Thumbs.db *.tar.gz *.tar.xz -# Build temporary directory +# Build temporary directories build-tmp/ +iso-tmp/ +chroot/ +test-chroot/ -# Log files +# Log files (kept in logs/ directory) *.log # Test keys (WireGuard) *.key +keys/ + +# Old build scripts (archived) +old-build-scripts/ + +# Editor directories +.crush/ + +# Temporary test artifacts +test-disk*.img +test-vm-disk.qcow2 +*.qcow2 +*.img + +# VM state files +vm.pid +console.log