gps 7.3.3

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

pub fn config_get_bool(config: &git2::Config, name: &str) -> Result<Option<bool>, ConfigGetError> {
    config_get_to_option(config.get_bool(name))
}