From f2c1a9e2d61751bbf113ab9f2ecda2fcab1e03fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20M=C3=B6rling?= Date: Thu, 30 Apr 2026 15:34:00 +0200 Subject: [PATCH] =?UTF-8?q?docs:=20add=20branching=20strategy=20=E2=80=94?= =?UTF-8?q?=20master,=20develop,=20feature/*=20model?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AGENTS.md | 5 +++++ CODING_GUIDELINES.md | 40 ++++++++++++++++++++++++++++++++++------ 2 files changed, 39 insertions(+), 6 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 71eb674..3d7ca14 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -115,6 +115,11 @@ Full details in `@CODING_GUIDELINES.md`. Key rules: - No commented-out code. Delete it. - Functions stay small (<30 lines). +### Git +- Create `feature/*`, `fix/*`, or `chore/*` branches from `develop`. +- Never commit directly to `master` or `develop`. +- Merge strategy: fast-forward or merge — either is fine. + ### Frontend (Vue.js 3) - `