tga 2.2.1

Developer productivity analytics — git commit collection, classification, and reporting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Git extraction module.
//!
//! Wraps `git2` to walk repositories, compute per-commit diff statistics,
//! and persist commit + file rows into the SQLite store.

pub mod diff;
pub mod extractor;
pub mod fetch;
pub mod reachability;

pub use diff::{compute_commit_diff, CommitDiff, FileDiff};
pub use extractor::GitCollector;
pub use fetch::fetch_remote;
pub use reachability::{
    build_branch_map, build_tag_map, detect_default_branch_set, glob_matches, scan_and_persist,
    ReachabilityStats,
};