eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
pub mod trait_def;
pub mod manager;
pub mod status;
pub mod branches;
pub mod log;
pub mod stash;
pub mod tags;
pub mod reflog;
pub mod diff;
pub mod help;
pub mod renderers;
#[cfg(test)]
pub mod test_utils;

pub use trait_def::Component;
pub use manager::ComponentManager;
pub use status::StatusPane;
pub use branches::BranchesPane;
pub use log::LogPane;
pub use stash::StashPane;
pub use tags::TagsPane;
pub use reflog::ReflogPane;
pub use diff::DiffPane;
pub use help::HelpPane;
#[cfg(test)]
#[allow(unused_imports)]
pub use test_utils::*;