Your team follows the Gitflow branching model, and a new release branch needs to be created. Describe the steps you would take to create and merge this branch efficiently.

  • Create a new branch from develop for the release
  • Create a new branch from master for the release
  • Directly make changes in master
  • Use git tag to mark the release
In the Gitflow branching model, to create and merge a new release branch efficiently, you would create a new branch from develop for the release. This ensures that features are stabilized in the develop branch before creating a release.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *