git-tidy
is a set of git extensions for:
- Keeping your git logs tidy with ease.
git tidy-commit
guides users through a structured commit with a configurable schema.git tidy-squash
squashes messy commits into one tidy commit. - Linting a commit log.
git tidy-lint
verifies that commits match the schema. If a user usesgit tidy-commit
, commits will always validate. - Rendering a commit log.
git tidy-log
can render commits from any range and can render structured commits from a configurable Jinja template. Want to automatically generate release notes?git tidy-log
can be configured to group and render commits based on the schema.
View the git-tidy docs here for a complete tutorial on using git-tidy
.
One can install git-tidy
system-wide with pipx:
pipx install git-tidy
or pip:
pip3 install git-tidy
Note git-tidy
depends on git at a version of 2.22 or higher. OSX users can upgrade to the latest git
version with homebrew using brew install git
.
git-tidy
is compatible with Python 3.9 - 3.13.
For information on setting up git-tidy for development and contributing changes, view CONTRIBUTING.rst <CONTRIBUTING.rst>
_.
- @wesleykendall (Wes Kendall)
- @tomage (Tómas Árni Jónasson)