53ccbfa217
When sync.branch is set to the current branch (e.g., main), bd sync now commits directly instead of failing with a worktree error. Changes: - sync.go: Detect when current branch == sync branch and skip worktree - sync.go: Show appropriate messages for direct-mode commits/pulls - doctor.go: Change from Error to OK status when on sync branch The fix allows users to work directly on the sync branch without having to switch to a different branch for bd sync to work. Closes: GH#519 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
35 lines
573 B
Plaintext
35 lines
573 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
|
|
!metadata.json
|
|
!config.json
|
|
deletions.jsonl
|
|
deletions.jsonl.migrated
|