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)
This commit is contained in:
2026-08-29 13:13:25 -04:00
parent 49ac5bef03
commit b42456f255
+3 -2
View File
@@ -35,5 +35,6 @@ environment.go
http-client.private.env.json
# Build artifacts
build/*.tar.gz
./AniTrack
*.tar
*.tar.gz
/AniTrack