The interactions.jsonl file is an append-only audit log that should be tracked in git (synced with bd sync), but it was missing from the negation patterns in .beads/.gitignore. This adds !interactions.jsonl alongside !issues.jsonl and !metadata.json for consistency and clarity that this file should be committed. Co-authored-by: Christian Catalan <crcatala@gmail.com>
34 lines
552 B
Plaintext
34 lines
552 B
Plaintext
# SQLite databases
|
|
*.db
|
|
*.db?*
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Daemon runtime files
|
|
daemon.lock
|
|
daemon.log
|
|
daemon.pid
|
|
bd.sock
|
|
|
|
# Local version tracking (prevents upgrade notification spam after git ops)
|
|
.local_version
|
|
|
|
# Legacy database files
|
|
db.sqlite
|
|
bd.db
|
|
|
|
# Merge artifacts (temporary files from 3-way merge)
|
|
beads.base.jsonl
|
|
beads.base.meta.json
|
|
beads.left.jsonl
|
|
beads.left.meta.json
|
|
beads.right.jsonl
|
|
beads.right.meta.json
|
|
|
|
# Keep JSONL exports and config (source of truth for git)
|
|
!issues.jsonl
|
|
!interactions.jsonl
|
|
!metadata.json
|
|
!config.json
|