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-beschrijvingMain Branches
- Development - Development branch
- Staging - Test branch
- Production - Deploy/production branch
Flow
- Maak feature branch van
Development - Commit regelmatig met duidelijke messages
- Push naar remote
- Open Pull Request
- Code Review
- Merge naar
Development
Commit Message Convention
type(scope): description
[optional body]
[optional footer]Types
add:- Nieuwe featureedit:- Aanpassenupdate:- Bewerkentest:- 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.