git-worktree-manager 0.0.39

CLI tool integrating git worktree with AI coding assistants
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    // Windows' default main-thread stack is 1 MiB, which the debug-build
    // clap-derive parser for our 55+ command variants can blow through
    // (STATUS_STACK_OVERFLOW). Run on a thread with an 8 MiB stack to match
    // Linux/macOS behavior.
    std::thread::Builder::new()
        .stack_size(8 * 1024 * 1024)
        .spawn(git_worktree_manager::entrypoint::run)
        .expect("spawn main thread")
        .join()
        .expect("main thread panicked");
}