radicle_cob/backend/git.rs
1// Copyright © 2022 The Radicle Team
2
3pub mod change;
4
5#[cfg(feature = "stable-commit-ids")]
6pub mod stable;
7
8/// Environment variable to set to overwrite the commit date for both the author and the committer.
9///
10/// The format must be a unix timestamp.
11pub const GIT_COMMITTER_DATE: &str = "GIT_COMMITTER_DATE";