livestream-archiver/.gitignore
RTSDA b247683fea Clean up repository and improve .gitignore
- Remove .DS_Store files (macOS system files)
- Remove package directory (build artifact)
- Remove tar.gz archive (build artifact)
- Add comprehensive .gitignore for Rust projects
- Ignore OS files, editor files, and build artifacts
2025-08-16 18:59:24 -04:00

31 lines
254 B
Plaintext

# Rust build artifacts
/target
/debug
/release
# Test files
*.mp4
*.avi
*.mkv
*.mov
# Package and deployment artifacts
/package/
*.tar.gz
*.tar
*.zip
# OS files
.DS_Store
Thumbs.db
# Editor files
*.swp
*.swo
*~
.vscode/
.idea/
# Cache files
.cache/