We'd like to include information in all git commit messages about the type of change. To achieve this, we can implement Conventional Commits or use prefixes like bug:, docs:, feat:, etc.
Lastly, we must ensure that all contributor's commit messages conform to this standard via some safeguards like pre-commit or a CI job.
We'd like to include information in all git commit messages about the type of change. To achieve this, we can implement Conventional Commits or use prefixes like
bug:
,docs:
,feat:
, etc.Lastly, we must ensure that all contributor's commit messages conform to this standard via some safeguards like pre-commit or a CI job.