⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

veridian_kernel/devtools/git/
mod.rs

1//! Native Git Client
2//!
3//! Implements Git object model, porcelain commands, and network transport
4//! for a fully native Git client on VeridianOS.
5
6pub mod commands;
7pub mod deflate;
8pub mod objects;
9pub mod refs;
10pub mod transport;