A command line tool for creating and managing multiple repositories.
bash
cargo install mure
$HOME/.mure.toml ... configuration file
$HOME/.dev ... development directory
$HOME/.dev/repo ... repositories directory
When you clone a repository, it will be clone into the $HOME/.dev/repo/github.com/{owner}/{repo}
directory.
GH_TOKEN
environment variable is required for authentication.mure init
Generate .mure.toml
file in home directory.
```toml [core] base_dir = "~/.dev"
[github] username = "kitsuyui" ```
mure clone
clone the repository to the common directory.
And makes symbolic links to the working repository.
bash
mure clone <url>
mure issues
shows the list of issues and pull requests of all repositories.
Example:
mure refresh
updates the repository.
BSD-3-Clause