Crate gix_worktree

Source
Expand description

A crate with utility types for use by other crates that implement specifics.

Unless specified differently, all operations need an index file (e.g. .git/index) as driver.

§Feature Flags

  • attributes (enabled by default) — Instantiate stacks that can access .gitattributes information.
  • serde — Data structures implement serde::Serialize and serde::Deserialize.

Re-exports§

pub use gix_attributes as attributes;attributes
pub use gix_glob as glob;
pub use gix_ignore as ignore;
pub use gix_index as index;
pub use gix_object as object;
pub use gix_validate as validate;attributes

Modules§

stack

Structs§

Stack
A cache for efficiently executing operations on directories and files which are encountered in sorted order. That way, these operations can be re-used for subsequent invocations in the same directory.