create Command
What It’s For
Start feature work across multiple repositories from a single command.
What It Does
- Creates a worktree for the target branch in each configured repository.
- Ensures repositories are aligned to the same branch name.
- Runs configured lifecycle hooks when present.
Usage
arashi create <branch> [options]Key Options
--only <repos>limit creation to comma-separated repository names.-i, --interactivepick repositories interactively.--conflict <strategy>preselect conflict handling (ABORT,REUSE_EXISTING).--no-hooksdisable hook execution.--no-progresshide progress indicators.--dry-rungenerate a plan without creating worktrees.
Examples
# Create branch worktrees across the workspacearashi create feature-auth-refresh
# Create in specific repositories onlyarashi create feature-auth-refresh --only api,web
# Review the plan firstarashi create feature-auth-refresh --dry-runNotes
createvalidates branch names and repository readiness.- On failure, coordinated operations can roll back to keep repos consistent.