chore: stop tracking build/ (compile artifacts) + add .gitignore

build/ is generated by CMake and must not be in the repo; it bloated .git to
571MB and made pushes fail (gitea/nginx resets the connection on large uploads).
Untrack the 397 build/ files (kept on disk, just removed from the index) and add
a .gitignore covering build/ and build_*/ so they stay out going forward.
Repo is now source-code only and pushes are small.
This commit is contained in:
2026-09-05 14:39:15 +02:00
parent 75817a6290
commit d83e15b8fc
+20
View File
@@ -0,0 +1,20 @@
# Build directories (never commit) - recreated by CMake
build/
build_*/
build_linux/
build_win/
build_mailio/
build_asan/
CMakeCache.txt
CMakeFiles/
# Qt / IDE local settings
.qtcreator/
*.user
# Test binaries / temp
/test_*
# OS files
.DS_Store
Thumbs.db