- 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
130 lines
1.4 KiB
Text
130 lines
1.4 KiB
Text
# Research and inspiration files
|
|
.notes/rpm-ostree-main
|
|
.notes/inspiration/
|
|
!/.notes/inspiration/readme.md
|
|
*/inspiration/
|
|
inspiration
|
|
|
|
# Rust build artifacts
|
|
/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
|
|
# Debian build artifacts
|
|
*.deb
|
|
*.ddeb
|
|
*.udeb
|
|
debian/.debhelper/
|
|
debian/cargo/
|
|
debian/*.debhelper
|
|
debian/debhelper-build-stamp
|
|
debian/*.log
|
|
debian/*.substvars
|
|
debian/files
|
|
debian/*.conffiles
|
|
debian/*.postinst
|
|
debian/*.postrm
|
|
debian/*.prerm
|
|
debian/*.triggers
|
|
|
|
# Package archives and tarballs
|
|
*.tar
|
|
*.tar.gz
|
|
*.tar.xz
|
|
*.tar.bz2
|
|
*.zip
|
|
*.7z
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
debian/*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
temp/
|
|
tmp/
|
|
.archive
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
|
|
# Trash
|
|
.1trash/
|
|
stubs.txt
|
|
|
|
# Test artifacts
|
|
test-*.log
|
|
test-results/
|
|
coverage/
|
|
*.profraw
|
|
*.profdata
|
|
|
|
# Build stamps and cache
|
|
*.stamp
|
|
.cache/
|
|
.cargo/registry/
|
|
.cargo/git/
|
|
|
|
# Debug symbols and large binary files
|
|
*.debug
|
|
*.dbg
|
|
*.so.debug
|
|
*.dSYM/
|
|
debug/
|
|
debuginfo/
|
|
|
|
# Generated documentation
|
|
docs/_build/
|
|
docs/.doctrees/
|
|
docs/api/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# 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
|