fix: remove large binary files from git tracking and improve .gitignore
- Remove large binary files (apt-ostree, apt-ostreed) from debian/ directory - Add comprehensive patterns for debug symbols and large binary files - Add patterns for additional build artifacts and large file types - Prevent future commits of large files that should be ignored - This should significantly reduce repository size
This commit is contained in:
parent
f582d7f162
commit
35661c0d13
1 changed files with 31 additions and 0 deletions
31
.gitignore
vendored
31
.gitignore
vendored
|
|
@ -84,6 +84,14 @@ coverage/
|
|||
.cargo/registry/
|
||||
.cargo/git/
|
||||
|
||||
# Debug symbols and large binary files
|
||||
*.debug
|
||||
*.dbg
|
||||
*.so.debug
|
||||
*.dSYM/
|
||||
debug/
|
||||
debuginfo/
|
||||
|
||||
# Generated documentation
|
||||
docs/_build/
|
||||
docs/.doctrees/
|
||||
|
|
@ -97,3 +105,26 @@ docs/api/
|
|||
# Local configuration
|
||||
config.local.*
|
||||
*.local
|
||||
|
||||
# Large files and archives
|
||||
*.iso
|
||||
*.img
|
||||
*.qcow2
|
||||
*.vmdk
|
||||
*.ova
|
||||
*.ovf
|
||||
*.bin
|
||||
*.exe
|
||||
*.dll
|
||||
*.dylib
|
||||
*.a
|
||||
*.o
|
||||
*.elf
|
||||
|
||||
# Additional build artifacts
|
||||
build/
|
||||
dist/
|
||||
out/
|
||||
output/
|
||||
*.build
|
||||
*.buildinfo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue