Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1 KB

02-commits.md

File metadata and controls

45 lines (30 loc) · 1 KB

Commits

Summary

  1. GIT Flow
  2. Commits
  3. Architecture
  4. Technologies
  5. Lint
  6. Patterns

Format of the commit message

<type>: <subject>

Regex

(feat||fix|docs|style|refactor|test|chore)\(.*\)\:.*\

Prefix (types)

  • feat: a new feature
  • fix: a bug fix
  • docs: changes to documentation
  • style: formatting, missing semi colons, etc; no code change
  • refactor: refactoring production code
  • test: adding tests, refactoring test; no production code change
  • chore: updating build tasks, package manager configs, etc; no production code change

Message Body

Lowercase letters

Example

feat: adds new tag of conversion

References

⬆ back to top