// ABOUTME: Entry point shared by the git-sprout and git-worktree-fast binaries.
// ABOUTME: Dispatches the `add` subcommand and delegates everything else to git.
usestd::process::ExitCode;pubmoddelegate;/// Runs the tool with the given argv tail (everything after the program name).
pubfnrun(args:Vec<std::ffi::OsString>)-> ExitCode{delegate::worktree_add(&args)}