tags:
- git
permalink: what-is-commitizen
title: What is Commitizen?
Commitizen is a release management tool that can bump your project's version, create the changelog, and update files.
Write a conventional commit.
cz c
Check that the entire repo adheres to conventional commits.
cz check --rev-range master..HEAD
Check the oldest available commit in the given clone.
cz check --rev-range $(git rev-list --max-parents=0 HEAD)..HEAD