this repo has no description
1# SQLite databases 2*.db 3*.db?* 4*.db-journal 5*.db-wal 6*.db-shm 7 8# Daemon runtime files 9daemon.lock 10daemon.log 11daemon.pid 12bd.sock 13sync-state.json 14last-touched 15 16# Local version tracking (prevents upgrade notification spam after git ops) 17.local_version 18 19# Legacy database files 20db.sqlite 21bd.db 22 23# Worktree redirect file (contains relative path to main repo's .beads/) 24# Must not be committed as paths would be wrong in other clones 25redirect 26 27# Merge artifacts (temporary files from 3-way merge) 28beads.base.jsonl 29beads.base.meta.json 30beads.left.jsonl 31beads.left.meta.json 32beads.right.jsonl 33beads.right.meta.json 34 35# NOTE: Do NOT add negation patterns (e.g., !issues.jsonl) here. 36# They would override fork protection in .git/info/exclude, allowing 37# contributors to accidentally commit upstream issue databases. 38# The JSONL files (issues.jsonl, interactions.jsonl) and config files 39# are tracked by git by default since no pattern above ignores them.