Skip to content

Branching Strategie

Documentatie van onze Git branching strategie.

Branch Naming Convention

add_TASK-XXX-beschrijving
edit_TASK-XXX-beschrijving
update_ISSUE-XXX-beschrijving
test_TASK-XXX-beschrijving

Main Branches

  • Development - Development branch
  • Staging - Test branch
  • Production - Deploy/production branch

Flow

  1. Maak feature branch van Development
  2. Commit regelmatig met duidelijke messages
  3. Push naar remote
  4. Open Pull Request
  5. Code Review
  6. Merge naar Development

Commit Message Convention

type(scope): description

[optional body]
[optional footer]

Types

  • add: - Nieuwe feature
  • edit: - Aanpassen
  • update: - Bewerken
  • test: - testen

Voorbeeld

add_AdminAuth: add login form validation
Closes #123.
Added email and password validation to the login form.
Also added error messages for invalid inputs.

Fire Management System Documentation