I know what are bugfix, hotfix and feature branches.
But the thing that I can't grasp is support command as git flow support start <version> <branch>
could someone explain this command with a simple scenario?
I know what are bugfix, hotfix and feature branches.
But the thing that I can't grasp is support command as git flow support start <version> <branch>
could someone explain this command with a simple scenario?
Here's the quoted definition from https://gitversion.net/docs/git-branching-strategies/gitflow-examples
Support branches are not really covered in GitFlow, but are essential if you need to maintain multiple major versions at the same time. You could use support branches for supporting minor releases as well. If you are just supporting the majors, then name your branch
support/<major>.x
(i.esupport/1.x
), to support minors usesupport/<major>.<minor>.x
orsupport/<major>.<minor>.0
. (i.esupport/1.3.x
orsupport/1.3.0
)
The point here is to have a branch which needs to be supported for some time in parallel to develop/master.