The rm command removes cloned repositories from your local filesystem.
repos rm [OPTIONS] [REPOS]...This command is the counterpart to clone. It deletes the directories of the
specified repositories. This is useful for cleaning up your workspace or before
re-cloning repositories to get a fresh start.
[REPOS]...: A space-separated list of specific repository names to remove. If not provided, filtering will be based on tags.
-c, --config <CONFIG>: Path to the configuration file. Defaults torepos.yaml.-t, --tag <TAG>: Filter repositories to remove only those with the specified tag. Can be used multiple times.-e, --exclude-tag <EXCLUDE_TAG>: Exclude repositories with a specific tag from being removed.-p, --parallel: Executes the removal operations in parallel.-h, --help: Prints help information.
This will remove all repositories defined in your config file from your local disk.
repos rmrepos rm repo-one repo-threerepos rm --tag frontendThis will remove all repositories except for those tagged as production.
repos rm -e productionrepos rm -p