pull Command
What It’s For
Update repositories in your workspace without entering each one manually.
What It Does
- Runs pull operations across managed repositories.
- Brings local branches up to date with remote changes.
- Reports which repositories succeeded or failed.
Usage
arashi pull [options]Key Options
--only <repo>limit pull to specific repositories (repeatable).-v, --verboseprint full git output.
Examples
# Pull all eligible repositoriesarashi pull
# Pull selected repositories onlyarashi pull --only api --only web
# Pull with detailed command outputarashi pull --verboseNotes
- Repositories with no remote changes are skipped.
- Pull failures or manual-update states return a non-zero exit code.