versioning - Git flow: Best practice for dealing with minor releases -



versioning - Git flow: Best practice for dealing with minor releases -

git flow uses branch (master) stable releases. each release tagged version number. git flow scheme farther uses release branches branched-off develop prepare release. however, apparently release branches deleted when release finished (after content has been merged both master , develop).

hotfix branches there deal issues in production release , both branched-off , merged-into master. apparently theser done prepare new minor release version.

however, how should deal minor fixes not require new release? imagine want collect several little bugfixes until release new minor version. wouldn't useful maintain release branch that? or there other/better solution?

git versioning release git-flow

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -