1 2 3 4 5 6 7 8 9 10
//! Git adapter implementations //! //! This module contains Git-based implementations of the ports. mod error; mod executor; mod staging; pub use executor::GitCommitExecutor; pub use staging::GitStagingChecker;