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(())
# }
Async typed git CLI wrapper for agents and automation.
use gitr::Repository;
# async fn example() -> Result<(), gitr::Error> {
let repo = Repository::open(".").await?;
let branch = repo.current_branch().await?;
# Ok(())
# }