mirror of
https://github.com/LukeHagar/firecamp.git
synced 2025-12-06 04:19:43 +00:00
1019 B
1019 B
How to write commit message?
The commit message will consist of a pattern like the following
type(component): subject line in text (#issue-number)
where
- type is required
- component is optional
- issue-number is optional
an example of commit message is like
with type
feat(authentication): feature is introduced
with type and issue-number
feat: authentication feature is introduced (#114)
with component
feat:(platform) authentication feature is introduced
with component and issue-number
feat:(platform): authentication feature is introduced (#114)
types
- chore: Regular code maintenance
- feat: The new feature you're introducing
- fix: A bug fix
- test: Everything related to testing
- ui: Feature and updates related to UI/UX
- refactor: Refactoring a specific section of the codebase
- doc: Everything related to documentation
components
Components are yet to define for Firecamp. TBD