gix-status 0.29.0

A crate of the gitoxide project dealing with 'git status'-like functionality
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Changes between an index and a worktree.
///
mod types;
pub use types::{Change, Conflict, ConflictIndexEntry, Context, EntryStatus, Error, Options, Outcome, VisitEntry};

mod recorder;
pub use recorder::{Record, Recorder};

pub(super) mod function;
///
pub mod traits;