Skip to content

πŸŽ‹ Git Flow

Dongjun edited this page May 18, 2025 · 1 revision

Git Flow

%%{init: { 'logLevel': 'debug', 'theme': 'base', 'gitGraph': {'mainBranchName': 'master'}} }%%
gitGraph
  commit id: "master init"
  branch development
  checkout development
  commit id: "start development"
  branch "rc-1.0.0"
  checkout "rc-1.0.0"
  commit id: "release 1.0.0 prep"
  checkout development
  branch "rc-2.0.0"
  checkout "rc-2.0.0"
  commit id: "release 2.0.0 prep"
  branch feat1
  checkout feat1
  commit id: "feat1 μž‘μ—…"
  checkout "rc-2.0.0"
  merge feat1
  branch feat2
  checkout feat2
  commit id: "feat2 μž‘μ—…"
  checkout "rc-2.0.0"
  merge feat2
  checkout development
  merge "rc-1.0.0"
  merge "rc-2.0.0"
  checkout master
  merge development
  
  checkout master
  branch "hotfix-2.0.1"
  checkout "hotfix-2.0.1"
  commit id: "μ€‘μš” 버그 μˆ˜μ •"
  checkout master
  merge "hotfix-2.0.1" tag: "v2.0.1"
  checkout development
  merge "hotfix-2.0.1"
Loading

Clone this wiki locally