clean_git_history_lib 0.2.1

A Git history linter to ensure it stays clean for those who prefer rebasing and fast-forwarding compared to merge and squash commits.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]

#[macro_use]
extern crate log;

/// A representation of a range of commits within a Git repository, which can have various lints performed upon it after construction.
mod commits;

pub use crate::commits::Commits;