Files
Marlin/.gitignore
thePR0M3TH3AN b43d3e3ebd Update .gitignore, add CLI cheatsheet, and modify benchmark results
- Updated .gitignore to include new target files and reports.
- Added a new CLI cheatsheet document for quick reference on commands and flags.
- Modified benchmark results in `bench/dirty-vs-full.md` to reflect updated performance metrics.
- Changed permissions for `run_all_tests.sh` to make it executable.
- Updated `target/.rustc_info.json` with additional output information.
- Adjusted file modes for `target/release/marlin` and `target/release/marlin.d`.
2025-05-20 14:59:02 -04:00

55 lines
667 B
Plaintext

# === Rust artifacts ===
/target/
/Cargo.lock
# === IDEs & editors ===
.idea/
.vscode/
*.swp
*.swo
*.bak
*~
# === OS files ===
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini
# === Logs and build artifacts ===
*.log
*.out
*.err
# === Marlin-specific ===
/index.db
index.db
*.sqlite
*.sqlite-wal
*.sqlite-shm
# === Tests and scratch ===
/tmp/
*.test.db
test.db
# === Environment variables and secrets ===
.env
.env.*
# === Other Files ===
repo-context.txt
saved_config.yaml
# === Other Dirs ===
/bench/corpus
/bench/backups
/target/
/cobertura.xml
/tarpaulin-report.html
target/.rustc_info.json
target/release/marlin
target/release/marlin.d
tarpaulin-report.html