Skip to main content

gitkraft_core/features/
mod.rs

1//! Git operations grouped by feature area.
2//!
3//! Each sub-module owns both its domain types (`types.rs`) and its operations
4//! (`ops.rs`), re-exporting both at the module level for ergonomic access.
5
6pub mod branches;
7pub mod commits;
8pub mod diff;
9pub mod graph;
10pub mod log;
11pub mod persistence;
12pub mod remotes;
13pub mod repo;
14pub mod staging;
15pub mod stash;
16pub mod theme;