git-workflow 0.1.3

Git workflow CLI - type-safe worktree-aware git operations with GitHub integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! git-workflow - Git workflow CLI
//!
//! Type-safe worktree-aware git operations with compile-time protection
//! for protected branches.

pub mod cli;
pub mod commands;
pub mod error;
pub mod git;
pub mod github;
pub mod output;
pub mod state;

pub use error::{GwError, Result};