linux - git flow 能不能有多个并行release吗,怎么才能实现?
漂亮男人
漂亮男人 2017-05-02 09:52:28
0
1
1041

git flow 能不能有多个并行release吗,怎么才能实现?

比如: 在一个git版本中存在release/v1.0.0 和 release/v0.2.0

漂亮男人
漂亮男人

reply all (1)
某草草

Git flow assigns version numbers based on tags. Therefore, it is impossible to maintain multiple active versions.

For example:

HashData released version 1.0, followed by version 1.1.
At this time, I found a bug in 1.0, which has been fixed in 1.1. Users of 1.0 need a fix, but don't want to upgrade to version 1.1 (major version upgrades require additional fees). What should I do if I need to release a 1.0.1 version?

The answer is that git flow can't do it.
You need to create a new 1.0.1 branch from the 1.0 tag, which is not within the rules of git flow.

So git flow is more suitable for projects with only one active release, such as websites. Traditional software products need to maintain multiple active releases at the same time. So not applicable.

    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!