Git Workflow
We use a feature-branch workflow.
Rules
- Always create a new branch from
devbefore starting work.git checkout dev git pull git checkout -b feature/your-feature-name - Use Conventional Commits for all commit messages.
Example:
feat: add student registration endpoint - Squash commits when merging if there are too many “wip” commits.