git-pincer 0.1.0

A simple and compact Git CLI, mainly used for resolving conflicts.
Documentation
1
2
3
4
5
6
7
8
9
//! The git-pincer executable entry: Parses arguments and dispatches them to subcommands.

use anyhow::Result;
use clap::Parser;
use git_pincer::cli::Cli;

fn main() -> Result<()> {
    Cli::parse().run()
}