termesh-git 0.1.3

Internal component of a terminal-native, agent-first IDE.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Repository status model + git backend (CLI first). Phase 06.
//!
//! See ARCHITECTURE.md ยง7 for how this crate fits the workspace.
#![forbid(unsafe_code)]

mod diff;
mod real;
mod service;
mod status;
mod worker;

pub use diff::{bounded_context_diff, bounded_diff};
pub use real::RealGitService;
pub use service::GitService;
pub use status::parse_status;
pub use worker::GitWorker;