Skip to content

Commit

Permalink
test: update test with gitgraph example
Browse files Browse the repository at this point in the history
refers to #81
  • Loading branch information
raghur committed Dec 23, 2023
1 parent 6cfaa4b commit 4d63fe5
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions test.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit 4d63fe5

Please sign in to comment.