From 19bf4ec77dcd0aea3e3788c4ce7320a0e96e9690 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Tue, 20 Jan 2026 10:57:50 -0500 Subject: [PATCH] chore: Update .gitignore for build artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds patterns to ignore build-tmp/, *.log, and *.key files which are generated during the build process and should not be committed to version control. 💘 Generated with Crush Assisted-by: Gemini 2.5 Flash via Crush --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 11c7aa2..b5f7a2b 100644 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,12 @@ Thumbs.db *.deb *.tar.gz *.tar.xz + +# Build temporary directory +build-tmp/ + +# Log files +*.log + +# Test keys (WireGuard) +*.key