git 流程中的支持命令是什么

what is support command in git flow

我知道什么是错误修复、修补程序和功能分支。
但是我无法掌握的是支持命令 git flow support start <version> <branch>

有人可以用一个简单的场景来解释这个命令吗?

这里引用了 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.e support/1.x), to support minors use support/<major>.<minor>.x or support/<major>.<minor>.0. (i.e support/1.3.x or support/1.3.0)

这里的重点是有一个分支需要与develop/master并行支持一段时间。