The classic Git Flow model with develop, release, and hotfix branches.
gitGraph
commit
branch trunk
checkout trunk
branch develop
checkout develop
commit
commit
branch feature/abc
checkout feature/abc
commit
checkout develop
merge feature/abc
branch release/1.0
checkout release/1.0
commit
checkout trunk
merge release/1.0
branch hotfix/1.0.1
checkout hotfix/1.0.1
commit
checkout trunk
merge hotfix/1.0.1
checkout develop
merge hotfix/1.0.1Git Workflows