git-bra 0.4.0

A Git worktree manager with project-aware configuration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod cli;
mod commands;
mod config;
mod git;
pub mod output;
mod project;

use anyhow::Result;
use clap::Parser;

pub fn run() -> Result<()> {
    let cli = cli::Cli::parse();
    commands::run(cli)
}