1 2 3 4 5 6 7 8 9 10
//! 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 use diff::{compute_commit_diff, CommitDiff, FileDiff}; pub use extractor::GitCollector;