- Demo Repo for Learning GitHub
- Notes and linked screencasts on dev.to
- Topics listed here
Using mermaid notation. Live editor to create diagram syntax at this location --> https://mermaid-js.github.io/mermaid-live-editor.
First example shown below is a flow chart.
graph TD;
Commit-->Branch;
Commit-->Fork;
Branch-->Merge;
Fork-->Merge;
Second example is a user journey.
journey
title My working day
section Go to work
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 3: Me
Third example is a sequence diagram.
sequenceDiagram
Alice->>+John: Hello John, how are you?
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
John-->>-Alice: I feel great!