rusty-mermaid Gallery

25 diagram types — 297 diagrams rendered by rusty-mermaid

gitgraph (5)

git_basic
develop main v1.0
Source (.mmd)
gitGraph
    commit
    commit
    branch develop
    commit
    commit
    checkout main
    commit
    merge develop
    commit tag: "v1.0"
git_commit_types
hotfix main normal rev hl fix-1 v1.1
Source (.mmd)
gitGraph
    commit id: "normal"
    commit id: "rev" type: REVERSE
    commit id: "hl" type: HIGHLIGHT
    branch hotfix
    commit id: "fix-1"
    checkout main
    merge hotfix tag: "v1.1"
    commit
git_feature_branches
feature-api feature-auth main init setup auth-1 auth-2 api-1 v0.2 v1.0
Source (.mmd)
gitGraph
    commit id: "init"
    commit id: "setup"
    branch feature-auth
    commit id: "auth-1"
    commit id: "auth-2"
    checkout main
    branch feature-api
    commit id: "api-1"
    checkout main
    merge feature-auth tag: "v0.2"
    merge feature-api
    commit tag: "v1.0"
git_many_branches
develop feature main
Source (.mmd)
gitGraph
    commit
    commit
    branch develop
    checkout develop
    commit
    commit
    branch feature
    checkout feature
    commit
    checkout develop
    merge feature
    checkout main
    merge develop
    commit
git_tags
hotfix main v1.0 v1.0.1 v1.1
Source (.mmd)
gitGraph
    commit
    commit tag: "v1.0"
    branch hotfix
    commit
    commit tag: "v1.0.1"
    checkout main
    merge hotfix
    commit tag: "v1.1"