pub const PROTECTED_BRANCHES: &[&str] = &["main", "master", "dev", "develop"];
#[allow(dead_code)]
pub const DEFAULT_MAIN_BRANCHES: &[&str] = &["main", "master"];
#[allow(dead_code)]
pub const GITHUB_HOST: &str = "github.com";
#[allow(dead_code)]
pub const BITBUCKET_CLOUD_HOST: &str = "bitbucket.org";
#[allow(dead_code)]
pub const BITBUCKET_API_BASE: &str = "https://api.bitbucket.org/2.0";
#[allow(dead_code)]
pub const HOOK_ENV_FORCE_COLOR: &str = "1";
#[allow(dead_code)]
pub const GIT_REFS_HEADS_PREFIX: &str = "refs/heads/";
#[allow(dead_code)]
pub const GIT_REFS_REMOTES_PREFIX: &str = "refs/remotes/";
#[allow(dead_code)]
pub const GIT_EXTENSION: &str = ".git";
#[allow(dead_code)]
pub const CONFIG_FILE_NAME: &str = "git-worktree-config.jsonc";