vinxen-git 0.1.0

Git operations for Vinxen CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod branch;
mod error;
mod history;
mod repo;
mod status;
mod watcher;

pub use branch::BranchInfo;
pub use error::{GitError, Result};
pub use history::CommitInfo;
pub use repo::GitRepo;
pub use status::{FileStatus, RepoStatus, StatusKind};
pub use watcher::{GitEvent, GitWatcher};