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
17
18
//! gitgrip - Multi-repo workflow tool
//!
//! A high-performance tool for managing multi-repository workspaces,
//! with support for GitHub, GitLab, and Azure DevOps.

pub mod cli;
pub mod core;
pub mod files;
pub mod git;
pub mod ipc;
pub mod mcp;
pub mod platform;
pub mod telemetry;
pub mod util;

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