Skip to content

Commit f121a21

Browse files
committed
Trying to get the order correct in the mermaid diagram
1 parent cbf9040 commit f121a21

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

docs/branches.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -281,23 +281,26 @@ Merge 'cool-feature' to 'master'
281281
```mermaid
282282
graph LR
283283
284+
master["master"]
285+
style master fill:#ffffff,stroke:#ffffff
286+
cool-feature["cool-feature"]
287+
style cool-feature fill:#ffffff,stroke:#ffffff
288+
284289
commitX(["commitX"])
285290
commit1(["commit1"])
286291
commit2(["commit2"])
287292
commitY(["commitY"])
288293
commit3(["commit3"])
294+
commit4(["commit4"])
289295
290-
commit2 --> commit1
291-
commitX --> commit1
292-
commit3 --> commit2
293-
commitY --> commitX
294-
295-
master["master"]
296296
master -.-> commit4
297-
cool-feature["cool-feature"]
298-
cool-feature -.-> commitY
299297
commit4 --> commit3
300298
commit4 --> commitY
299+
cool-feature -.-> commitY
300+
commit3 --> commit2
301+
commit2 --> commit1
302+
commitY --> commitX
303+
commitX --> commit1
301304
```
302305

303306
Delete 'cool-feature'

0 commit comments

Comments
 (0)