diff --git a/src/git.rs b/src/git.rs index 705d93c..4d64065 100644 --- a/src/git.rs +++ b/src/git.rs @@ -111,6 +111,7 @@ pub struct GitRepo { pub url: String, #[serde(skip_serializing_if = "Option::is_none")] pub flags: Option>, + pub kind: Option, } /// Represents a single operation on a repository diff --git a/src/main.rs b/src/main.rs index 67ec5b3..8e4f4cf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -202,6 +202,7 @@ mod config { path: "/tmp".to_string(), url: "https://github.com/cafkafk/gg".to_string(), flags: Some(vec![Clone, Push]), + kind: None, }, ); }