gitgrip 0.10.0

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

pub mod griptree;
pub mod manifest;
pub mod repo;
pub mod repo_manifest;
pub mod state;

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