git-hist 1.0.2

A CLI tool to quickly browse the git history of files on a terminal
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Result;
use git_hist::{app, args::Args};

fn main() -> Result<()> {
    let args = Args::load()?;
    app::run(args)?;

    Ok(())
}