A simple repository manager.
Clone repositories using repo URL. The path to the cloned repository will be
output to standard out. If the path already exists, it will not be re-cloned.
Set repo's prefix using REPOPREFIX (default $HOME/.local/src).
curl lesiw.io/repo | shgo install lesiw.io/repo@latestTo automatically change to the cloned repository directory, add this function to your shell's rc file.
repo() {
cd "$(command repo $@)"
}