git-prole 0.5.3

A git-worktree(1) manager
Documentation
1
2
3
4
5
6
7
use git_prole::App;
use git_prole::Config;

fn main() -> miette::Result<()> {
    let config = Config::new()?;
    App::new(config).run()
}