gitbox 2.1.3

Git toolbox to simplify adoption of conventional commits and semantic version, among other things.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub struct InitOptions {
    empty: bool,
}

impl InitOptions {
    pub fn new(empty: bool) -> InitOptions {
        InitOptions { empty }
    }

    pub fn empty(&self) -> bool {
        self.empty
    }
}