Member-only story
What exactly is git flow???
It is a git development method that utilizes the branch that is a function of git. When developing with multiple people, if you adopt git without deciding the operation rule, conflicts will occur frequently and merge mistakes will occur.
It is git flow that can avoid such problems and make the most of git.
Branches
master
: Branch to store released data.develop
: Branch for development.release
: Branch that prepares and fine-tunes before release .feature
: branch for feature development. Implement individual functions and resolve bugs.hotfix
: Branch for urgent corrections to released data.
More detail and explanation of each branch
Master
Often the master branch and the published production environment are the same source.
Develop
The one under development (for the next release if it is an update project) is reflected in perfect condition. It is the main branch of development work, and the sources newly created and modified by each developer are gathered in this branch. In terms of update projects, the difference…