Git flow: Best practice for dealing with minor releases
问题 Git flow uses a certain branch ( master ) for stable releases. Each release is tagged by a version number. The git flow scheme further uses release branches branched-off from develop to prepare a release. However, apparently those release branches are deleted when the release is finished (after the content has been merged back into both master and develop). Hotfix branches are there to deal with issues in production release and are both branched-off and merged-into master. But apparently