- Remove tracked audio files (ogg, wav) from git history - Update .gitignore to ignore all audio formats (ogg, wav, mp3, flac, aac, m4a) - Remove local config and temp files from tracking 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
73 lines
671 B
Plaintext
73 lines
671 B
Plaintext
# Build directories
|
|
build/
|
|
cmake-build-*/
|
|
out/
|
|
|
|
# vcpkg
|
|
vcpkg_installed/
|
|
vcpkg/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
.vs/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.user
|
|
*.suo
|
|
*.sln.docstates
|
|
|
|
# Compiled files
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.exe
|
|
*.dll
|
|
*.lib
|
|
*.obj
|
|
*.pdb
|
|
*.ilk
|
|
*.exp
|
|
|
|
# Environment and secrets
|
|
.env
|
|
|
|
# Recordings (generated at runtime)
|
|
recordings/*.txt
|
|
recordings/*.md
|
|
recordings/*.json
|
|
!recordings/.gitkeep
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# CMake
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
Makefile
|
|
compile_commands.json
|
|
|
|
# ImGui
|
|
imgui.ini
|
|
|
|
# Audio files
|
|
*.ogg
|
|
*.wav
|
|
*.mp3
|
|
*.flac
|
|
*.aac
|
|
*.m4a
|
|
denoised/
|
|
|
|
# Claude Code local settings
|
|
.claude/settings.local.json
|
|
|
|
# Build scripts (local)
|
|
run_build.ps1
|