Learn the Gitflow workflow – in 5 mins or less.

The Gitflow Workflow defines a strict branching model designed around the project release. — Atlassian docs The overall flow of Gitflow A develop branch is created from master A release branch is created from develop Feature branches are created from develop When a feature is complete it is merged into the develop branch When the…