Mermaid Diagram

Git Graphs

Branch and commit history visualization

Git Graphs

Git graphs visualize branch history and merges.

gitGraph
    commit id: "Initial commit"
    commit id: "Add README"
    branch develop
    checkout develop
    commit id: "Setup CI/CD"
    branch feature/auth
    checkout feature/auth
    commit id: "Login page"
    commit id: "Auth middleware"
    checkout develop
    merge feature/auth
    branch feature/dashboard
    checkout feature/dashboard
    commit id: "Dashboard layout"
    commit id: "Charts widget"
    checkout main
    merge develop
    commit id: "Release v1.0"

Release Workflow

gitGraph
    commit id: "v1.0.0"
    branch hotfix
    checkout hotfix
    commit id: "Critical bug fix"
    checkout main
    merge hotfix tag: "v1.0.1"
    branch release/2.0
    checkout release/2.0
    commit id: "New features"
    commit id: "Polish UI"
    checkout main
    merge release/2.0 tag: "v2.0.0"

Back to overview.

โ† Back to overview