gitr 0.4.0

Async typed git CLI wrapper for agents and automation.
Documentation

gitr

Async typed git CLI wrapper for agents and automation.

Quick start

use gitr::Repository;

# async fn example() -> Result<(), gitr::Error> {
let repo = Repository::open(".").await?;
let branch = repo.current_branch().await?;
# Ok(())
# }