gtl 0.5.22

gtl is a Git-based tool designed to simplify the management of multiple remote repositories. It extends Git's functionality by providing one-click initialization and pushing to multiple remote repositories, making it especially useful for developers who need to maintain multiple remote repositories simultaneously.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Path to the configuration file.
pub const CONFIG_PATH: &str = "/home/.git_helper/config.json";

/// Package name constant.
pub(crate) const PACKAGE_NAME: &str = "gtl";

/// Package version constant.
pub(crate) const PACKAGE_VERSION: &str = "0.1.6";

/// Maximum number of retries for git operations.
pub(crate) const MAX_RETRIES: u32 = 6;

/// Delay between retries in seconds.
pub(crate) const RETRY_DELAY_SECS: u64 = 2;