-
Notifications
You must be signed in to change notification settings - Fork 0
Commit and branches naming guidelines
These rules are here to have a consistent git history around all the repository. Please follow them as much a you can if you wish to contribute to the project.
The branches name format is an important format to follow since it either links directly your branch to the issue your are working on or tels precisely what you are working on.
When you are not working on a specific issue just replace the #issueID with #noid.
Type : feat, fix, lint, wip
{type}/#{issueID}-{feature-name}
We are trying to follow the Angular Commit Message Format. This allows the project to have an easier to read and more consistent commit history.
Try to always use imperative in your commits messages: fix not fixed nor fixes
Types : feat, fix, lint, wip, doc
{type}({scope}) : {description}