go/docs/cmd/setup/example.md
Snider bdfb089fd3 docs: fix --dir to --path in setup example
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-29 15:48:07 +00:00

29 lines
364 B
Markdown

# Setup Examples
```bash
# Clone all repos
core setup
# Specific directory
core setup --path ~/Code/host-uk
# Use SSH
core setup --ssh
```
## Configuration
`repos.yaml`:
```yaml
org: host-uk
repos:
core-php:
type: package
core-tenant:
type: package
depends: [core-php]
core-admin:
type: package
depends: [core-php, core-tenant]
```