git-branchless 0.3.4

Branchless workflow for Git
Documentation
1
2
3
4
5
6
7
8
9
10
//! Tools for editing the commit graph.

mod evolve;
mod execute;
pub mod hooks;
mod plan;

pub use evolve::{find_abandoned_children, find_rewrite_target};
pub use execute::{execute_rebase_plan, move_branches, ExecuteRebasePlanOptions};
pub use plan::{BuildRebasePlanOptions, RebasePlanBuilder};