gitgrip 0.18.0

Multi-repo workflow tool - manage multiple git repositories as one
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core business logic for gitgrip

pub mod detect;
pub mod gripspace;
pub mod griptree;
pub mod manifest;
pub mod manifest_paths;
pub mod repo;
pub mod repo_manifest;
pub mod state;
pub mod sync_state;

pub use manifest::CloneStrategy;
pub use manifest::Manifest;
pub use repo::RepoInfo;
pub use state::StateFile;