//! # gitr
//!
//! Async typed git CLI wrapper for agents and automation.
//!
//! ## Quick start
//!
//! ```no_run
//! use gitr::Repository;
//!
//! # async fn example() -> Result<(), gitr::Error> {
//! let repo = Repository::open(".").await?;
//! let branch = repo.current_branch().await?;
//! # Ok(())
//! # }
//! ```
pub use GitError as Error;
pub use Repository;
pub use ;