Souko is a simple command line utility that provides an easy way to organize clones of remote git repositories.
VS Code extension souko-vscode is also available.
When you clone a remote repository with souko, souko creates a directory under a specific root directory (~/.local/share/souko/root by default) containing the hostname and path of the remote repository's URL.
$ souko clone https://github.com/gifnksm/souko
# => creates local clone at ~/.local/share/souko/root/github.com/gifnksm/soukoYou can also list all repositories that have been cloned.
$ souko list
# => list of absolute paths of all repositories cloned with soukoUse --template to customize the output format of souko list.
$ souko list --template $'{root_name}\t{repo_relative_path}\t{repo_canonical_path}'
# => default github.com/gifnksm/souko /home/you/.local/share/souko/root/github.com/gifnksm/soukoThere are multiple ways to install souko. Choose any one of the methods below that best suits your needs.
Following packages are available:
Executable binaries are available for download on the GitHub Release page.
You can also install the binary with cargo-binstall command.
# Install pre-built binary
$ cargo binstall soukoBy combining souko, fuzzy finder, and shell functions, you can easily jump between repositories.
Example with skim (sk):
$ repo_dir="$(
souko list --template $'{repo_canonical_path}\t{root_name} {repo_relative_path}' |
sk --delimiter $'\t' --with-nth 2.. --nth 1.. |
cut -f1
)"
$ printf '%s\n' "$repo_dir"Example with fzf:
$ repo_dir="$(
souko list --template $'{repo_canonical_path}\t{root_name} {repo_relative_path}' |
fzf --delimiter=$'\t' --with-nth=2.. --nth=1.. |
cut -f1
)"
$ printf '%s\n' "$repo_dir"This repository includes a zsh plugin that adds a widget for changing to a repository selected from souko list with sk or fzf.
By default, the plugin binds Ctrl-g to souko-cd-widget.
The plugin requires:
souko- either
skorfzf
source /path/to/souko/souko.plugin.zshsheldon add --github gifnksm/souko souko
sheldon lockWhen invoked, the widget:
- runs
souko list --template ... - pipes the output to
skorfzf - extracts the path from the selected line
- runs
cdto change to the selected repository in the current shell
The default template is:
$'{repo_canonical_path}\t{root_name} {repo_relative_path}'This means:
- the text before the tab is used as the destination path for
cd - the text after the tab is displayed and searched in the selector
- if the label contains additional tabs, the selector continues to display and search the remaining label fields
SOUKO_LIST_TEMPLATE is customizable, but the widget expects each output line to follow this format:
path<TAB>label
If the selected line contains a tab, the part before the first tab is used as the destination path. If the selected line does not contain a tab, the entire line is treated as the path.
Set these before loading the plugin:
export SOUKO_COMMAND=souko
export SOUKO_SELECTOR=auto # auto|sk|fzf
export SOUKO_LIST_TEMPLATE=$'{repo_canonical_path}\t{root_name} {repo_relative_path}'
export SOUKO_KEY_CD_REPO='^G' # Ctrl-g; set empty to disable automatic bindkey
export SOUKO_SK_OPTS='--ansi'
export SOUKO_SK_TMUX_OPTS='center,80%'
export SOUKO_FZF_OPTS='--height=40%'
export SOUKO_FZF_TMUX_OPTS='center,80%'Use fzf explicitly and change the key binding:
export SOUKO_SELECTOR=fzf
export SOUKO_KEY_CD_REPO='^R'
source /path/to/souko/souko.plugin.zshDisable the default key binding and bind the widget yourself:
export SOUKO_KEY_CD_REPO=
source /path/to/souko/souko.plugin.zsh
bindkey '^G' souko-cd-widgetShow a different label while preserving the required path format:
export SOUKO_LIST_TEMPLATE=$'{repo_canonical_path}\t{repo_relative_path}'Configuration is done via a TOML file located at ~/.config/souko/config.toml by default.
[[root]]
name = "default"
path = "~/.local/share/souko/root"
[[root]]
name = "repos"
path = "~/repos"
[query]
default_scheme = "github"
[query.scheme_alias]
gh = "github"
gl = "gitlab"
[query.custom_scheme]
github = "https://github.com/{path}.git"
gitlab = "https://gitlab.com/{path}.git"--template uses souko's template variables (no extra escape-sequence processing is done by souko itself; quoting/escaping is handled by your shell).
Terminology:
root: one[[root]]entry in config (for example,defaultorrepos)repo: each Git repository found under a root
Available variables:
{root_name}{root_display_path}{root_real_path}{root_canonical_path}{repo_relative_path}{repo_display_path}{repo_real_path}{repo_canonical_path}
Path variable semantics:
relative_path: path relative to the selected root (for repositories, this is{repo_relative_path})display_path: user-facing path representation (may include~and may not be absolute)real_path: absolute path before canonicalization (symlinks are not resolved)canonical_path: canonical absolute path (symlinks resolved)
To build souko executable from the source, you must have the Rust toolchain installed. To install the rust toolchain, follow this guide.
Once you have installed Rust, the following command can be used to build and install souko:
# Install released version
$ cargo install souko
# Install latest version
$ cargo install --git https://github.com/gifnksm/souko.git soukoThe minimum supported Rust version is Rust 1.88.0. At least the last 3 versions of stable Rust are supported at any given time.
While a crate is a pre-release status (0.x.x) it may have its MSRV bumped in a patch release. Once a crate has reached 1.x, any MSRV bump will be accompanied by a new minor version.
This project is licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
See CONTRIBUTING.md.