
- 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
31 lines
254 B
Plaintext
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/
|