gitgrip 0.20.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
//! CLI layer
//!
//! Command-line interface using clap.

pub mod args;
pub mod commands;
pub mod context;
pub mod dispatch;
pub mod output;
pub mod output_sink;
pub mod repo_iter;

pub use args::Cli;
pub use context::WorkspaceContext;
pub use output::Output;
pub use output_sink::OutputSink;