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
/// Result from an async operation
#[derive(Debug, Clone)]
pub enum AsyncResult {
    #[allow(dead_code)]
    TaskComplete { id: u64, success: bool, message: String, should_refresh: bool },
    FileChanged,
    CommitDetailLoaded(String),
    CommitDetailError(String),
}