Skip to content

Template

Feature branch merge

A git graph with a feature branch merged back to main.

gitgraphgit
Expand

This git graph template shows a simple feature-branch flow: commits on main, a feature branch with api and ui work, then merge and release.

Adapt commit ids and branch names for your branching strategy docs or onboarding guides.

Git graphs are Preview-only; Present walks through each git operation step by step.

Mermaid source

gitGraph
  commit id: "init"
  commit id: "setup"
  branch feature
  checkout feature
  commit id: "api"
  commit id: "ui"
  checkout main
  merge feature
  commit id: "release"