eazygit 0.5.1

A fast TUI for Git with staging, conflicts, rebase, and palette-first UX
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod actions;
pub mod application;
pub mod reducer;
pub mod state;
pub mod reducers;
pub mod event_loop;
pub mod error_guidance;
pub mod workflow;
pub mod conflict_resolution;
pub mod commit_template;
pub mod rebase;

// Re-exports for convenience
pub use actions::Action;
pub use application::Application;
pub use reducer::reducer;
pub use state::AppState;