Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 500 Bytes

concepts-commit-conventions.md

File metadata and controls

17 lines (12 loc) · 500 Bytes

Concept: Commit conventions

Commit conventions allow your team to add more semantic meaning to your git history. This e.g. includes type, scope or breaking changes.

With this additional information tools can derive useful human-readable information for releases of your project. Some examples are

  • Automated, rich changelogs
  • Automatic version bumps
  • Filter fo test harnesses to run

The most common commit conventions follow this pattern:

type(scope?): subject
body?
footer?