---
title: "Conventional Commits"
description: "!https://www.conventionalcommits.org/en/v1.0.0/"
date: 2025-06-17
published: true
tags:
  - dev
  - thought
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://www.conventionalcommits.org/en/v1.0.0/" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-content">
      <div class="embed-card-title">Conventional Commits</div>
      <div class="embed-card-description">A specification for adding human and machine readable meaning to commit messages</div>
      <div class="embed-card-meta">Conventional Commits &middot; conventionalcommits.org</div>
    </div>
  </a>
</div>


I try to use conventional commits on all of my commits, but I often end up only using feat/fix.  I need to keep this page handy and get new verbiage worked into my language 

* fix:
* feat:
* build:
* chore:
* ci:
* docs:
* style:
* refactor:
* perf:
* test:

Optionally include a scope `fix(parser):`

A bang indicates a breaking change note. For example ...

``` bash
chore!: drop support for Node 6

BREAKING CHANGE: use JavaScript features not available in Node 6.
```
