pub fn read_git_config(key: &str) -> Result<Option<String>, StorageError>Expand description
Reads a Git configuration value from the default config.
Args:
key: The Git configuration key (e.g. “gpg.ssh.allowedSignersFile”).
Usage:
ⓘ
let value = read_git_config("user.email")?;