From 3f15352d8fc7cf4712366ea29728bf21d3c5b336 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Thu, 18 Dec 2025 09:16:23 +0000 Subject: [PATCH] chore: Add zip and gz files to .gitignore Exclude temporary archive files (*.zip, *.gz) from version control. These are typically temporary extraction artifacts and should not be committed. Author: Matthew Raymer --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6d25e4f..9670664 100644 --- a/.gitignore +++ b/.gitignore @@ -65,4 +65,6 @@ logs/ *.lock *.bin workflow/ -screenshots/ \ No newline at end of file +screenshots/ +*.zip +*.gz