- Create .gitignore file in .beads/ when running bd init
- Ignores *.db and *.db-* patterns to prevent database commits
- Add test coverage to verify .gitignore creation
- Add .claude/settings.local.json to project .gitignore
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Co-authored-by: Ben Madore <madorb@users.noreply.github.com>
8 lines
197 B
Plaintext
8 lines
197 B
Plaintext
# Test bd init command
|
|
bd init --prefix test
|
|
stdout 'initialized successfully'
|
|
exists .beads/test.db
|
|
exists .beads/.gitignore
|
|
grep '^\*\.db$' .beads/.gitignore
|
|
grep '^\*\.db-\*$' .beads/.gitignore
|