| Crates.io | rrc |
| lib.rs | rrc |
| version | 0.2.1 |
| created_at | 2020-01-07 14:14:27.579149+00 |
| updated_at | 2025-01-03 02:44:12.879186+00 |
| description | A manage remote repository clones |
| homepage | https://github.com/mopemope/rrc |
| repository | https://github.com/mopemope/rrc |
| max_upload_size | |
| id | 196134 |
| size | 82,686 |
rrc is a remote repository management tool like ghq written in Rust.
rrc provides a way to organize remote repository clones, like go get does.
rrc makes a directory under a specific root directory (by default ~/repos) using the remote repository URL’s host and path.
$ cargo install rrc
rrc command is almost compatible with ghq.
rrc
A manage remote repository clones
USAGE:
rrc [OPTIONS] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-c, --config <FILE> Set config file
SUBCOMMANDS:
each Execute command for each local repositories
get Clone remote repository
help Prints this message or the help of the given subcommand(s)
list List local repositories
look Look local repository
remove Remove local repositories
update Update local repositories
For how to use this tool, ghq-handbook will be helpful.
rrc provides a simple toml-style configuration file.
The configuration file can set profile name in the section. You can then select a profile with command line options. And you can also set host filters. If you set a host filter, it will be enabled across profiles.
# default profile
[default]
# customize repo root path
root = "~/repos"
# personal profile
[personal]
# customize repo root path
root = "~/personal_repos"
# hosts filter. gitlab repository cloned '~/personal_repos'
hosts = ["gitlab.com"]