Git strategy
Branching Strategy
Create a new branch for your feature or bug fix:
git checkout -b feature/your-feature-name
Commit Guidelines
Follow the Conventional Commits specification for commit messages:
fix
: Bug fixes or documentation (patch version bump).feat
: New features (minor version bump).feat!
: Breaking changes (major version bump).
Example:
fix: Correct typo in documentation
Semantic Versioning
The project uses automated semantic versioning based on commit messages via get-next-version
.
Merge Requests
Submit your changes as a merge request against the develop branch.