1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Git LFS facade.
//!
//! Purpose:
//! - Git LFS facade.
//!
//! Responsibilities:
//! - Expose Git LFS detection, filter/status parsing, pointer validation, and health reporting.
//! - Keep LFS concerns split into focused submodules instead of one large implementation file.
//!
//! Not handled here:
//! - Regular git status/commit/clean operations.
//! - Repository cleanliness policy outside LFS.
//!
//!
//! Usage:
//! - Used through the crate module tree or integration test harness.
//!
//! Invariants/assumptions:
//! - Repositories without LFS remain a healthy no-op case.
//! - LFS pointer validation only applies to small text pointer files.
pub use ;
pub use check_lfs_health;
pub use filter_modified_lfs_files;
pub use validate_lfs_pointers;
pub use check_lfs_status;
pub use ;