Skip to content

Commit 5189639

Browse files
committed
feat: add builds module for saving and reusing configurations
- Add Build struct with TOML serialization - Implement build list/save/delete commands - Store builds in ~/.gitkit/builds/ - Add capture_current_config to detect current repo state - Add detect_gitignore_templates and detect_gitattributes_presets
1 parent 447ab10 commit 5189639

3 files changed

Lines changed: 481 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ path = "src/main.rs"
1515
[dependencies]
1616
anyhow = "1"
1717
clap = { version = "4", features = ["derive"] }
18+
serde = { version = "1", features = ["derive"] }
19+
toml = "0.8"
1820
ureq = "2"
1921

2022
[dev-dependencies]

0 commit comments

Comments
 (0)