PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, September 27, 2022

[FIXED] What are other benefits of using release mode in continuous integration practice?

 September 27, 2022     continuous-deployment, continuous-integration, git, git-flow, release-management     No comments   

Issue

A single release branch into which shipped code is merged and tagged by release version.

The stable code is merged, from the master, into the release branch when preparing for a release.

The CI server builds in release mode and optimizes for performance.

What are other benefits there for the release branch?


Solution

Such a release branch is good to have since it is always clear exactly what has been shipped. This can be useful if you want to analyze a bug in production, e.g. to try out bugfixes in the right environment. In that case you can just check out the release branch.

As a side note, I can mention that I wouldn't personally use the scheme described, I would recommend GitHub flow or possibly git flow.



Answered By - Klas Mellbourn
Answer Checked By - Robin (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing