feat: git branch tooling (#6831)

This commit is contained in:
jif-oai
2025-11-18 15:26:09 +00:00
committed by GitHub
parent f3d4e210d8
commit fc55fd7a81
2 changed files with 146 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ use std::fmt;
use std::path::PathBuf;
mod apply;
mod branch;
mod errors;
mod ghost_commits;
mod operations;
@@ -13,6 +14,7 @@ pub use apply::apply_git_patch;
pub use apply::extract_paths_from_patch;
pub use apply::parse_git_apply_output;
pub use apply::stage_paths;
pub use branch::merge_base_with_head;
pub use errors::GitToolingError;
pub use ghost_commits::CreateGhostCommitOptions;
pub use ghost_commits::create_ghost_commit;