Git Workflow
This section outlines our Git workflow, integrating branching, committing, and issue management.
- Branching: Create a new branch for each task. See Branching Strategy.
- Committing: Write clear, conventional commit messages. See Commit Guidelines.
- Issues: Link your work to specific issues. See Issue Management.
- ADRs: Reference architectural decisions if applicable. See ADR Linking.
Workflow Steps
- Pick an issue (or create one).
- Create a branch from
dev(for new features) ormaster(for incident fixes). - Implement changes.
- Commit changes following the Commit Guidelines.
- Push branch and open a Pull Request.
- Ensure CI checks (including
commitlint) pass.