gps 7.3.3

Official CLI & library for Git Patch Stack
Documentation
1
2
3
4
5
6
7
8
use super::{config_get_to_option, ConfigGetError};

pub fn config_get_string(
    config: &git2::Config,
    name: &str,
) -> Result<Option<String>, ConfigGetError> {
    config_get_to_option(config.get_string(name))
}