From b42456f25531a9ba49df73a36448fe28ff43269d Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 29 Aug 2026 13:13:25 -0400 Subject: [PATCH] chore(gitignore): ignore build binaries and archive artifacts Ignore compiled binaries and packaging archives that are generated during a build, without hiding tracked build source files: - build/bin: the compiled application binary - *.tar / *.tar.gz: packaging archives (e.g. Wails .ptmp temp dirs) - /AniTrack: the root app binary (fix the previous './AniTrack' pattern, which gitignore did not match) --- .gitignore | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3816fac..9c9f3df 100644 --- a/.gitignore +++ b/.gitignore @@ -35,5 +35,6 @@ environment.go http-client.private.env.json # Build artifacts -build/*.tar.gz -./AniTrack +*.tar +*.tar.gz +/AniTrack