gitstack 5.3.0

Git history viewer with insights - Author stats, file heatmap, code ownership
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Branch topology view module
//!
//! Provides bird's-eye view of branch relationships

pub mod analysis;
pub mod layout;
pub mod types;

pub use analysis::{analyze_branch_recommendations, analyze_topology, analyze_topology_from_repo};
pub use layout::render_topology_ascii;
pub use types::{
    BranchHealth, BranchRecommendation, BranchRecommendations, BranchRelation, BranchStatus,
    BranchTopology, HealthWarning, RecommendedAction, TopologyBranch, TopologyConfig,
};