Commit messages should be clear, consistent, and human-friendly. gitfluff is a commit linter for the AI agent era: it keeps your history tidy, removes noisy AI signatures, and enforces lightweight standards without getting in your way.
- Clean history by default with Conventional Commits.
- Automatically strips common AI attribution banners and trailers.
- Optional policies for ticket prefixes/suffixes and character hygiene.
- Works locally, in hooks, and in CI with the same rules.
- Zero-config to start, fully configurable when you need it.
Lint the message Git is editing:
gitfluff lint .git/COMMIT_EDITMSG
Auto-clean the message in place:
gitfluff lint .git/COMMIT_EDITMSG --write
Install the commit-msg hook:
gitfluff hook install commit-msg
Homebrew:
brew tap goldziher/tap
brew install gitfluff
npm:
npm install -g gitfluff
Cargo:
cargo install gitfluff
One-off runs:
npx [email protected] --version
uvx gitfluff --version
No config is required. If you want project-wide rules, add .gitfluff.toml:
preset = "conventional"
write = true
[rules]
no_emojis = true
ascii_only = false
exit_nonzero_on_rewrite = true
title_prefix = "ABC-123"
title_prefix_separator = " - "
Notes:
title_prefixandtitle_suffixcan be simple literals or a pattern likeABC-[0-9]+.write = trueapplies safe cleanups and preserves your intent.- The hook honors your config automatically.
- Keep human-readable commits even when AI tools help draft them.
- Enforce ticket references without teaching everyone a new workflow.
- Stop emoji and non-ASCII characters when your tooling requires it.
gitfluff works with pre-commit, Husky, Lefthook, and raw Git hooks. If you already use a hook manager, just call gitfluff lint from your commit-msg hook. It accepts the commit message path as the first argument.
By default, gitfluff enforces the Conventional Commits 1.0.0 format, including title line structure, optional body and footer rules, and BREAKING CHANGE support.
If you want a stricter or custom format, you can override the title check with a custom pattern in CI or config. Run gitfluff lint --help for the full command reference.