scud_core 0.13.0

Core library of scud
Documentation
// Useful information in the context of the codebase and overall system
pub mod info;

// Handles branching operations as well as
// streamlining popular branching strategies.
pub mod branch;

// Declarative high-level operations on the top of the VCS.
pub mod commit;
pub mod diff;
pub mod feature;
pub mod init;
pub mod push;
pub mod stage;
pub mod state;
pub mod unstage;

// Handles ensuring the system is setup for usage with scud.
pub mod healthcheck;
pub mod update;