Git Workflow & Standards

evergreenLast update on Jul 6, 2026

Git Workflow

We use a feature-branch workflow.

Rules

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