Atlassian Bamboo: Handling git-Flow hotfix-branch

半城伤御伤魂 提交于 2019-12-06 12:47:33

问题


At our company we use Jira, Bitbucket and Bamboo. Our repository is organized in the git-flow schema:

  • develop-branch = Application code for testing (aka Release Candidate)
  • master-branch = Application code running live
  • feature-branches = new components based on actual dev-branch merged via pull-request
  • hotfix-branches = new hotfixes based on master-branch merged into develop and master via pull-request

Our versioning system works like the following:

Now I'm trying to integrate our structure into Bamboo. I created a plan triggered by changes into the dev-branch containing two stages:

  • 1: Develop - Build develop -> deploy after finish
  • 2: (manual) Production - Build master -> deploy after finish

That works fine with feature Branches. How do I handle hotfix branches? Do I need an additional plan or is it possible to create a single plan to cover the whole process?

来源:https://stackoverflow.com/questions/35995408/atlassian-bamboo-handling-git-flow-hotfix-branch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!