gitoxide 0.54.0

A command-line application for interacting with git repositories
1
2
3
4
5
6
7
8
#![deny(unsafe_code)]

fn main() -> anyhow::Result<()> {
    gitoxide::porcelain::main()
}

#[cfg(not(feature = "pretty-cli"))]
compile_error!("Please set 'pretty-cli' feature flag");