- Change validateBatchIssues() to only set timestamps if IsZero() - Preserves historical timestamps from external systems (Jira, GitHub) - Fixes dirty git repo after importing unchanged JSONL - New issues still get current timestamps as before - Add daemon.lock to .gitignore Closes bd-55 Fixes #121 Amp-Thread-ID: https://ampcode.com/threads/T-e53c4a96-38dd-440a-9b8d-824992d33a40 Co-authored-by: Amp <amp@ampcode.com>
52 lines
584 B
Plaintext
52 lines
584 B
Plaintext
# Binaries
|
|
/beads
|
|
/bd
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binaries
|
|
*.test
|
|
*.out
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Claude Code
|
|
.claude/settings.local.json
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# SQLite databases (now using JSONL as source of truth)
|
|
*.db
|
|
*.db-journal
|
|
*.db-wal
|
|
*.db-shm
|
|
|
|
# Daemon runtime files
|
|
.beads/daemon.log
|
|
.beads/daemon.pid
|
|
.beads/daemon.lock
|
|
.beads/bd.sock
|
|
|
|
# .beads directory files (keep JSONL only)
|
|
.beads/.gitignore
|
|
.beads/db.sqlite
|
|
.beads/bd.db
|
|
|
|
# Keep JSONL exports (source of truth for git)
|
|
!.beads/*.jsonl
|
|
|
|
# Ignore nix result
|
|
result
|