commit_culture
commit_culture
Type: Specifies the category of the change, such as feat (new feature), fix (bug
fix), docs (documentation), style (code style changes), refactor (code
restructuring without changing functionality), test (adding or modifying tests),
and chore (miscellaneous tasks).
Scope: Optional component that indicates the part of the codebase affected by the
change, like a specific module or function.
Subject: A concise description of the change, written in the imperative mood (e.g.,
"add user authentication").
Educate Your Team: Ensure all contributors understand the Conventional Commits
specification and its importance.
Use Commit Linters: Integrate tools that enforce commit message formats, such as
commitlint, into your development workflow.
By adopting the Conventional Commits specification, you can enhance the clarity and
maintainability of your project's history, leading to more efficient development
and collaboration.
Sources