souko
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.
Quick start
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/souko
You can also list all repositories that have been cloned.
$ souko list
# => list of absolute paths of all repositories cloned with souko
Use --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/souko
Installation
There are multiple ways to install souko. Choose any one of the methods below that best suits your needs.
Distribution packages
Following packages are available:
Pre-built binaries
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 souko
Shell integration
By combining souko, fuzzy finder, and shell functions, you can easily jump between repositories.
Fuzzy finder examples
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"
zsh plugin
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.
Requirements
The plugin requires:
souko- either
skorfzf
Manual
sheldon
Behavior
When 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:
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
Template contract
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.
Configuration
Set these before loading the plugin:
# auto|sk|fzf
# Ctrl-g; set empty to disable automatic bindkey
Example customizations
Use fzf explicitly and change the key binding:
Disable the default key binding and bind the widget yourself:
Show a different label while preserving the required path format:
Configuration
Configuration is done via a TOML file located at ~/.config/souko/config.toml by default.
[[]]
= "default"
= "~/.local/share/souko/root"
[[]]
= "repos"
= "~/repos"
[]
= "github"
[]
= "github"
= "gitlab"
[]
= "https://github.com/{path}.git"
= "https://gitlab.com/{path}.git"
Template variables and path semantics
--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)
Build from source using Rust
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 souko
Minimum supported Rust version (MSRV)
The 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.
License
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.
Contribution
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.