gitgrip 0.13.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
//! Core business logic for gitgrip

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

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