-
Base Branch:
dev. All development must be based on thedevbranch. -
Please create a separate feature-branch from
dev, commit your changes to it, and then open a Pull Request intodev.Example:
git checkout dev git checkout -b feature/your-change # ... make your changes and commit them git push origin feature/your-change
- Required Reviewers: PRs require review from at least one Core Reviewer before merging.
- Merge Cadence: Changes from
devare merged tomainweekly by the mentor. - Commit Messages: Follow standard semantic commit messages (e.g.
feat:,chore:,fix:,docs:,refactor:). - Merge Rules: Use Squash and Merge when merging feature branches to keep the history clean.