From 4d63fe598f8bd9c8aa324c9b9f0b48bae79d3fc3 Mon Sep 17 00:00:00 2001 From: Raghu Rajagopalan Date: Sat, 23 Dec 2023 17:41:02 +0530 Subject: [PATCH] test: update test with gitgraph example refers to #81 --- test.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/test.md b/test.md index 815ba8d..11ecc4f 100644 --- a/test.md +++ b/test.md @@ -38,3 +38,61 @@ graph LR; click A callback "Tooltip for a callback" click B "http://www.github.com" "This is a tooltip for a link" ``` + +## Bug 81 + + +```{.mermaid theme=forest} +gitGraph + commit + commit + branch develop + checkout develop + commit + commit + checkout main + merge develop + commit + commit +``` + + +```{.mermaid theme=forest} +gitGraph: + commit + commit + + branch feature/x + checkout feature/x + commit + commit + + checkout main + + merge feature/x + + branch feature/y + checkout feature/y + commit + commit + + checkout main + + merge feature/y + + branch release/x + checkout release/x + + commit tag: "X.X.X-qualifier.X" + + checkout main + branch feature/z + checkout feature/z + commit + commit + + checkout main + + merge feature/z + +```