其他分享
首页 > 其他分享> > Git flow 自动化发布

Git flow 自动化发布

作者:互联网

背景

公司使用 Git 做版本管理,使用 Jenkins 做自动化 Build 。但是在发布的时候,还是有很多人工的活。

步骤如下:

一次发布涉及十几个项目,每个手动 merge 一遍,还是不小的工作量。

改进

使用 Maven gitflow plugin ,可以实现自动化的发布。

前提

使用这个 plugin 的前提,是遵循 git flow 的基本使用规则。

简单概括如下:

详情参考 -> https://nvie.com/posts/a-successful-git-branching-model/

实现

Project source: https://github.com/aleksandr-m/gitflow-maven-plugin

Maven依赖注入:

<build>
    <plugins>
        <plugin>
            <groupId>com.amashchenko.maven.plugin</groupId>
            <artifactId>gitflow-maven-plugin</artifactId>
            <version>1.16.0</version>
            <configuration>
                <!-- optional configuration -->
		    <gitFlowConfig>
                        <productionBranch>master</productionBranch>
                        <developmentBranch>develop</developmentBranch>
                        <releaseBranchPrefix>release-</releaseBranchPrefix>
                        <versionTagPrefix></versionTagPrefix>
                        <origin>origin</origin>
                    </gitFlowConfig>
            </configuration>
        </plugin>
    </plugins>
</build>

在 Jenkins 端使用 Maven 命令如下:

gitflow:release-start - Starts a release branch and updates version(s) to release version.
gitflow:release-finish - Merges a release branch and updates version(s) to next development version.
gitflow:feature-start - Starts a feature branch and optionally updates version(s).
gitflow:feature-finish - Merges a feature branch.
gitflow:hotfix-start - Starts a hotfix branch and updates version(s) to hotfix version.
gitflow:hotfix-finish - Merges a hotfix branch.

参考

标签:Git,develop,plugin,flow,gitflow,version,branch,自动化,release
来源: https://www.cnblogs.com/maxstack/p/15494305.html