clone Command
What It’s For
Recover missing local repositories without re-adding them to workspace configuration.
What It Does
- Detects repositories already defined in
.arashi/config.jsonthat are missing on disk. - Lets you choose which missing repositories to clone in interactive mode.
- Clones all missing repositories in non-interactive mode with
--all. - Skips repositories that are already present locally.
Usage
arashi clone [options]Key Options
--allclone all missing configured repositories without selection prompts.
Examples
# Pick from missing repositories interactivelyarashi clone
# Clone every missing configured repositoryarashi clone --allNotes
cloneonly works on repositories already configured in the workspace.- If no repositories are missing, the command exits successfully with no clone action.
- If you’re in a non-interactive environment, use
--all.