git-sprout 0.0.0

A drop-in git worktree add that materialises the tree with filesystem copy-on-write clones
Documentation
1
2
3
4
5
6
7
8
// ABOUTME: The `git worktree-fast` binary, a second name for the same tool.
// ABOUTME: It exists so the command reads as self-explanatory without knowing the name.

use std::process::ExitCode;

fn main() -> ExitCode {
    git_sprout::run(std::env::args_os().skip(1).collect())
}