From b0ca864dfee21e526a89c51b12fa57f2c49db03e Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Fri, 20 Mar 2026 15:51:37 -0400 Subject: [PATCH] chore: exclude build tarball artifacts from version control Add *.tar.gz pattern to build directory exclusion in .gitignore to prevent build artifacts like Anitrack-0.5.2.tar.gz from being committed to the repository. These generated files are ephemeral build outputs that should not be tracked in version control. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index dd7cdb5..bf3e724 100644 --- a/.gitignore +++ b/.gitignore @@ -33,3 +33,6 @@ environment.go # REST (http files) http-client.private.env.json + +# Build artifacts +build/*.tar.gz