git-sprout 0.1.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 sprout` binary. Git dispatches `git sprout <args>` here by name.
// ABOUTME: Argument handling lives in the library so both binary names behave alike.

use std::process::ExitCode;

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