Skip to main content

subcog/git/
mod.rs

1//! Git operations.
2//!
3//! Git context detection for repository, branch, and path information.
4
5mod parser;
6mod remote;
7
8pub use parser::YamlFrontMatterParser;
9pub use remote::RemoteManager;