Git flow: Best practice for dealing with minor releases

落花浮王杯 提交于 2019-12-10 21:00:00

问题


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 theser are mainly done to prepare a new minor release version.

However, how should I deal with minor fixes that do not require a new release? Imagine that I want to collect several small bugfixes until I release a new minor version. Wouldn't it be useful to keep the release branch for that? Or is there any other/better solution?

来源:https://stackoverflow.com/questions/26916621/git-flow-best-practice-for-dealing-with-minor-releases

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!