gitkraft-core 0.7.2

Shared core logic for GitKraft — domain models, git operations, repository management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Git operations grouped by feature area.
//!
//! Each sub-module owns both its domain types (`types.rs`) and its operations
//! (`ops.rs`), re-exporting both at the module level for ergonomic access.

pub mod branches;
pub mod commits;
pub mod diff;
pub mod editor;
pub mod graph;
pub mod log;
pub mod persistence;
pub mod remotes;
pub mod repo;
pub mod staging;
pub mod stash;
pub mod theme;