gitkraft-core 0.6.2

Shared core logic for GitKraft — domain models, git operations, repository management
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Repository feature — types and operations for opening, initialising,
//! cloning, and inspecting Git repositories.

pub mod ops;
pub mod types;

pub use ops::{
    checkout_commit_detached, clone_repo, get_repo_info, init_repo, open_repo, reset_to_commit,
    revert_commit,
};
pub use types::{RepoInfo, RepoState};