Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Git Workflow

This section outlines our Git workflow, integrating branching, committing, and issue management.

  1. Branching: Create a new branch for each task. See Branching Strategy.
  2. Committing: Write clear, conventional commit messages. See Commit Guidelines.
  3. Issues: Link your work to specific issues. See Issue Management.
  4. ADRs: Reference architectural decisions if applicable. See ADR Linking.

Workflow Steps

  1. Pick an issue (or create one).
  2. Create a branch from dev (for new features) or master (for incident fixes).
  3. Implement changes.
  4. Commit changes following the Commit Guidelines.
  5. Push branch and open a Pull Request.
  6. Ensure CI checks (including commitlint) pass.