Skip to content

Gantt & Git Diagrams

gantt
  title Project Timeline
  dateFormat  YYYY-MM-DD
  section Planning
    Research           :a1, 2024-01-01, 14d
    Design             :a2, after a1, 10d
  section Development
    Frontend           :b1, after a2, 20d
    Backend            :b2, after a2, 20d
    API Integration     :b3, after b1, 10d
  section Testing
    QA                 :c1, after b3, 7d
    UAT                :c2, after c1, 5d
  section Launch
    Deploy             :d1, after c2, 2d
gitGraph
  commit id: "Initial"
  commit id: "Add config"
  branch develop
  checkout develop
  commit id: "Feature A"
  commit id: "Feature B"
  branch feature/c
  checkout feature/c
  commit id: "Feature C"
  checkout develop
  merge feature/c
  commit id: "Prepare release"
  checkout main
  merge develop
  commit id: "v1.0.0"
gitGraph
  commit id: "init"
  commit id: "setup"
  branch dev
  checkout dev
  commit id: "feat: auth"
  commit id: "feat: api"
  branch fix/login
  checkout fix/login
  commit id: "fix: login redirect"
  checkout dev
  merge fix/login
  commit id: "chore: bump"
  checkout main
  merge dev tag: "v1.0.0"