tga 1.0.16

Developer productivity analytics — git commit collection, classification, and reporting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! 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 use diff::{compute_commit_diff, CommitDiff, FileDiff};
pub use extractor::GitCollector;
pub use fetch::fetch_remote;