Stop committing!! | A good convention for commit messages

Опубликовано: 01 Ноябрь 2024
на канале: A Guide to Die by Code
2
0

Conventional Commit Messages

Format
✨ Type(moduelScope): description


More info about Types
✨ 'feat' Commits, that adds or remove a new feature
✨ 'fix' Commits, that fixes a bug
✨ 'perf' Commits are special refactor commits, that improve performance
✨ 'style' Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
✨ 'test' Commits, that add missing tests or correcting existing tests
✨ 'docs' Commits, that affect documentation only
✨ 'build' Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
✨ 'ops' Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
✨ 'chore' Miscellaneous commits e.g. modifying .gitignore


source: https://gist.github.com/qoomon/5dfcdf8eec6...