Remove tracked binary files and add aggressive Copilot exclusions
- git rm 146 tracked PNG images from praca_magisterska_video/images/ - git rm 1 tracked .apkg from anki_decks/warsaw_districts/ - Add *.apkg and praca_magisterska_video/images/ to .gitignore - Update .copilotignore with ** recursive patterns for all binary types - Add files.exclude and search.exclude in .vscode/settings.json - All binary files preserved in ../testsAndMisc_binaries/
@ -1,29 +1,34 @@
|
||||
# Binary / image files
|
||||
*.apkg
|
||||
*.png
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.gif
|
||||
*.webp
|
||||
*.svg
|
||||
*.ico
|
||||
*.bmp
|
||||
*.pdf
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.tgz
|
||||
*.bin
|
||||
*.exe
|
||||
*.so
|
||||
*.o
|
||||
*.a
|
||||
|
||||
# Build outputs
|
||||
pomodoro_app/build/
|
||||
|
||||
# Generated images
|
||||
**/generated_images_*/
|
||||
**/preview_images/
|
||||
# Binary / image files (** prefix for recursive matching)
|
||||
**/*.apkg
|
||||
**/*.png
|
||||
**/*.jpg
|
||||
**/*.jpeg
|
||||
**/*.gif
|
||||
**/*.webp
|
||||
**/*.svg
|
||||
**/*.ico
|
||||
**/*.bmp
|
||||
**/*.pdf
|
||||
**/*.zip
|
||||
**/*.tar.gz
|
||||
**/*.tgz
|
||||
**/*.bin
|
||||
**/*.exe
|
||||
**/*.so
|
||||
**/*.o
|
||||
**/*.a
|
||||
**/*.pyc
|
||||
**/*.pyo
|
||||
**/*.class
|
||||
**/*.wav
|
||||
**/*.mp3
|
||||
**/*.mp4
|
||||
**/*.avi
|
||||
**/*.ttf
|
||||
**/*.woff
|
||||
**/*.woff2
|
||||
**/*.eot
|
||||
**/*.flat
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
@ -31,6 +36,41 @@ pomodoro_app/build/
|
||||
|
||||
# Node modules
|
||||
node_modules/
|
||||
**/node_modules/
|
||||
|
||||
# Caches
|
||||
.ruff_cache/
|
||||
.mypy_cache/
|
||||
__pycache__/
|
||||
**/__pycache__/
|
||||
|
||||
# Build outputs
|
||||
pomodoro_app/build/
|
||||
sonic_pi/build/
|
||||
CPP/mini_browser/build/
|
||||
|
||||
# C random JPG images (46k+ files)
|
||||
C/misc/randomJPG/
|
||||
|
||||
# Generated / preview images
|
||||
**/generated_images_*/
|
||||
**/preview_images/
|
||||
|
||||
# Anki decks (2GB+ with images and .venvs)
|
||||
python_pkg/anki_decks/
|
||||
|
||||
# Image-heavy directories
|
||||
python_pkg/articles/uploads/
|
||||
python_pkg/praca_magisterska_video/images/
|
||||
python_pkg/download_cats/http_cat_cache/
|
||||
python_pkg/praca_magisterska_video/
|
||||
|
||||
# Files/dirs with many embedded image references
|
||||
python_pkg/praca_magisterska_video/
|
||||
python_pkg/cinema_planner/pasted_content.txt
|
||||
|
||||
# Downloaded image caches
|
||||
python_pkg/download_cats/http_cat_cache/
|
||||
|
||||
# C build artifacts
|
||||
**/*.out
|
||||
|
||||
4
.gitignore
vendored
@ -323,3 +323,7 @@ phone_focus_mode/config_secrets.sh
|
||||
# Generated output files
|
||||
out.txt
|
||||
cinema_plan_*.txt
|
||||
|
||||
# Binary images moved to external storage (testsAndMisc_binaries/)
|
||||
python_pkg/praca_magisterska_video/images/
|
||||
*.apkg
|
||||
|
||||
43
.vscode/settings.json
vendored
@ -3,5 +3,46 @@
|
||||
"*.py": "python",
|
||||
"stdio.h": "c"
|
||||
},
|
||||
"dart.flutterSdkPath": ".fvm/versions/stable"
|
||||
"dart.flutterSdkPath": ".fvm/versions/stable",
|
||||
"files.exclude": {
|
||||
"**/*.png": true,
|
||||
"**/*.jpg": true,
|
||||
"**/*.jpeg": true,
|
||||
"**/*.gif": true,
|
||||
"**/*.webp": true,
|
||||
"**/*.svg": true,
|
||||
"**/*.ico": true,
|
||||
"**/*.bmp": true,
|
||||
"**/*.apkg": true,
|
||||
"**/*.pdf": true,
|
||||
"**/*.pyc": true,
|
||||
"**/__pycache__": true,
|
||||
".venv": true,
|
||||
"**/.venv": true,
|
||||
".ruff_cache": true,
|
||||
".mypy_cache": true,
|
||||
"C/misc/randomJPG": true,
|
||||
"pomodoro_app/build": true,
|
||||
"sonic_pi/build": true,
|
||||
"CPP/mini_browser/build": true,
|
||||
"python_pkg/anki_decks/**/preview_images": true,
|
||||
"python_pkg/download_cats/http_cat_cache": true,
|
||||
"python_pkg/articles/uploads": true,
|
||||
"python_pkg/praca_magisterska_video/images": true,
|
||||
"**/generated_images_*": true
|
||||
},
|
||||
"search.exclude": {
|
||||
"**/*.zip": true,
|
||||
"**/*.so": true,
|
||||
"**/*.o": true,
|
||||
"**/*.flat": true,
|
||||
"**/*.wav": true,
|
||||
"**/*.ttf": true,
|
||||
"**/*.class": true,
|
||||
"**/node_modules": true,
|
||||
"python_pkg/anki_decks": true,
|
||||
"python_pkg/praca_magisterska_video": true,
|
||||
"python_pkg/articles/uploads": true,
|
||||
"python_pkg/download_cats/http_cat_cache": true
|
||||
}
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 173 KiB |
|
Before Width: | Height: | Size: 176 KiB |
|
Before Width: | Height: | Size: 161 KiB |
|
Before Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 163 KiB |
|
Before Width: | Height: | Size: 248 KiB |
|
Before Width: | Height: | Size: 442 KiB |
|
Before Width: | Height: | Size: 386 KiB |
|
Before Width: | Height: | Size: 583 KiB |
|
Before Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 335 KiB |
|
Before Width: | Height: | Size: 140 KiB |
|
Before Width: | Height: | Size: 114 KiB |
|
Before Width: | Height: | Size: 253 KiB |
|
Before Width: | Height: | Size: 217 KiB |
|
Before Width: | Height: | Size: 182 KiB |
|
Before Width: | Height: | Size: 175 KiB |
|
Before Width: | Height: | Size: 330 KiB |
|
Before Width: | Height: | Size: 204 KiB |
|
Before Width: | Height: | Size: 110 KiB |
|
Before Width: | Height: | Size: 122 KiB |
|
Before Width: | Height: | Size: 177 KiB |
|
Before Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 324 KiB |
|
Before Width: | Height: | Size: 227 KiB |
|
Before Width: | Height: | Size: 156 KiB |
|
Before Width: | Height: | Size: 147 KiB |
|
Before Width: | Height: | Size: 240 KiB |
|
Before Width: | Height: | Size: 204 KiB |
|
Before Width: | Height: | Size: 229 KiB |
|
Before Width: | Height: | Size: 236 KiB |
|
Before Width: | Height: | Size: 251 KiB |
|
Before Width: | Height: | Size: 307 KiB |
|
Before Width: | Height: | Size: 418 KiB |
|
Before Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 178 KiB |
|
Before Width: | Height: | Size: 95 KiB |
|
Before Width: | Height: | Size: 239 KiB |
|
Before Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 385 KiB |
|
Before Width: | Height: | Size: 166 KiB |
|
Before Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 192 KiB |
|
Before Width: | Height: | Size: 173 KiB |
|
Before Width: | Height: | Size: 184 KiB |
|
Before Width: | Height: | Size: 189 KiB |
|
Before Width: | Height: | Size: 438 KiB |
|
Before Width: | Height: | Size: 263 KiB |
|
Before Width: | Height: | Size: 351 KiB |
|
Before Width: | Height: | Size: 316 KiB |
|
Before Width: | Height: | Size: 223 KiB |
|
Before Width: | Height: | Size: 211 KiB |
|
Before Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 128 KiB |
|
Before Width: | Height: | Size: 132 KiB |
|
Before Width: | Height: | Size: 115 KiB |
|
Before Width: | Height: | Size: 93 KiB |
|
Before Width: | Height: | Size: 226 KiB |
|
Before Width: | Height: | Size: 138 KiB |
|
Before Width: | Height: | Size: 123 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 127 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 289 KiB |
|
Before Width: | Height: | Size: 253 KiB |
|
Before Width: | Height: | Size: 320 KiB |
|
Before Width: | Height: | Size: 214 KiB |
|
Before Width: | Height: | Size: 319 KiB |
|
Before Width: | Height: | Size: 422 KiB |
|
Before Width: | Height: | Size: 490 KiB |
|
Before Width: | Height: | Size: 303 KiB |
|
Before Width: | Height: | Size: 188 KiB |
|
Before Width: | Height: | Size: 224 KiB |
|
Before Width: | Height: | Size: 251 KiB |
|
Before Width: | Height: | Size: 197 KiB |
|
Before Width: | Height: | Size: 204 KiB |
|
Before Width: | Height: | Size: 250 KiB |
|
Before Width: | Height: | Size: 294 KiB |
|
Before Width: | Height: | Size: 72 KiB |
|
Before Width: | Height: | Size: 119 KiB |
|
Before Width: | Height: | Size: 163 KiB |
|
Before Width: | Height: | Size: 229 KiB |
|
Before Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 157 KiB |
|
Before Width: | Height: | Size: 116 KiB |
|
Before Width: | Height: | Size: 131 KiB |
|
Before Width: | Height: | Size: 125 KiB |
|
Before Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 72 KiB |