docs: fix bd daemon CLI syntax to use flag format (#568)
The bd daemon command only accepts flags with '--' prefix, not subcommands. Fixed all documentation to use correct syntax: - bd daemon start -> bd daemon --start - bd daemon status -> bd daemon --status - bd daemon stop -> bd daemon --stop - bd daemon restart -> bd daemon --stop && bd daemon --start Files updated: - docs/PROTECTED_BRANCHES.md (13 occurrences) - examples/team-workflow/README.md (4 occurrences) - examples/protected-branch/README.md (3 occurrences) - examples/multi-phase-development/README.md (1 occurrence) - examples/multiple-personas/README.md (1 occurrence) - integrations/beads-mcp/README.md (1 occurrence) - integrations/beads-mcp/SETUP_DAEMON.md (1 occurrence) Co-authored-by: cc-vps <crcatala+vps@gmail.com>
This commit is contained in:
committed by
GitHub
parent
a6ba8f3331
commit
c669a61faa
@@ -216,7 +216,7 @@ bd close bd-abc --reason "PR #123 merged"
|
||||
Daemon commits and pushes automatically:
|
||||
|
||||
```bash
|
||||
bd daemon start --auto-commit --auto-push
|
||||
bd daemon --start --auto-commit --auto-push
|
||||
```
|
||||
|
||||
Benefits:
|
||||
@@ -349,7 +349,7 @@ A: Add to your CI pipeline:
|
||||
Check daemon status:
|
||||
|
||||
```bash
|
||||
bd daemon status
|
||||
bd daemon --status
|
||||
bd daemons list
|
||||
```
|
||||
|
||||
@@ -363,8 +363,8 @@ bd config get daemon.auto_push
|
||||
Restart daemon:
|
||||
|
||||
```bash
|
||||
bd daemon stop
|
||||
bd daemon start --auto-commit --auto-push
|
||||
bd daemon --stop
|
||||
bd daemon --start --auto-commit --auto-push
|
||||
```
|
||||
|
||||
### Issue: Merge conflicts in JSONL
|
||||
|
||||
Reference in New Issue
Block a user