git flow was a mistake #11

Merged
cafkafk merged 29 commits from dev into main 2023-08-09 16:27:57 +02:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit ccf20d7363 - Show all commits

View file

@ -111,6 +111,7 @@ pub struct GitRepo {
pub url: String,
#[serde(skip_serializing_if = "Option::is_none")]
pub flags: Option<Vec<RepoFlags>>,
pub kind: Option<RepoKinds>,
}
/// Represents a single operation on a repository

View file

@ -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,
},
);
}