From d2cb8f70102ba8d825f1e72624d15c8e302df9fb Mon Sep 17 00:00:00 2001 From: Safak Hazinedar Date: Wed, 13 Nov 2024 14:06:08 +0100 Subject: [PATCH] Update Branch Policy --- home/branchpolicy.md | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/home/branchpolicy.md b/home/branchpolicy.md index 2740d19..1f66477 100644 --- a/home/branchpolicy.md +++ b/home/branchpolicy.md @@ -1,7 +1,45 @@ --- title: Branch Policy --- -![branchpolicy.png](uploads/94ccf972266bae1eae5cd69c5c265ee5/branchpolicy.png) +```mermaid +%%{init: { 'logLevel': 'debug', 'theme': 'default' } }%% +gitGraph + commit id: "init" + + branch dev + checkout dev + commit id: "init Codebase" + branch dev/feature1 + branch dev/feature2 + + checkout dev/feature1 + commit id: "f1-Com1" + commit id: "f1-Com2" + commit id: "f1-Com3" + checkout dev + merge dev/feature1 + + + checkout dev/feature2 + commit id: "f2-Com1" + commit id: "f2-Com2" + checkout dev + merge dev/feature2 + + + branch dev/feature3 + checkout dev/feature3 + commit id: "f3-Com1" + commit id: "f3-Com2" + commit id: "f3-Com3" + checkout dev + merge dev/feature3 + + checkout main + merge dev + commit id: "main-Com1" + +``` ## Branchtypen