rung_git/lib.rs
1//! # rung-git
2//!
3//! Git operations abstraction layer for Rung, built on git2-rs.
4//! Provides high-level operations for branch management, rebasing,
5//! and repository state inspection.
6
7mod error;
8mod repository;
9
10pub use error::{Error, Result};
11pub use git2::Oid;
12pub use repository::Repository;