Hand-on Demo – Release Branching for Continuous Delivery


LearnAzureDevOps-O5

Hand-on Demo – Release Branching for Continuous Delivery

The Release Branching model is useful when multiple versions of the software must be maintained simultaneously (e.g., active development on the next release while supporting an existing release). It balances structured development with Continuous Delivery (CD).

Release Branching Core Principles

  1. main Branch:

    • Represents the latest production release.

    • Only updated via merges from release/ or hotfix/ branches.

  2. release/ Branches:

    • Temporary branches used to finalize and stabilize a release.

    • Allow bug fixes or polishing before merging into main.

  3. develop Branch (Optional): Used for integrating features before creating a release branch.

  4. feature/ Branches: For feature development, based on develop (or main in simple setups).

  5. hotfix/ Branches: For urgent fixes directly based on main.

Scenario: Managing a Release with Release Branching

1. Initial Setup

  1. Branches:

    • main: Production-ready code.

    • release/: Used for finalizing releases.

    • develop (Optional): Active development branch.

  2. Tools:

    • Git for version control.

    • CI/CD pipeline to test and deploy code.

2. Workflow Steps

Step 1: Feature Development

Develop features using feature/ branches based on develop:

After the feature is reviewed and approved, merge it into develop:

Step 2: Create a Release Branch

When develop is ready for release:

Update version numbers or release-specific files:

Push the release branch for testing:

Step 3: Finalize the Release
  • CI/CD runs staging tests on the release branch.

  • Apply bug fixes directly to the release branch:

Step 4: Merge and Deploy

When the release is stable:

  1. Merge the release branch into main:

  2. Tag the release:

  3. Merge the release branch back into develop (if applicable):

  4. Delete the release branch:

The CI/CD pipeline deploys the main branch to production automatically.

Step 5: Handling Hotfixes

For urgent production fixes:

  1. Create a hotfix branch from main:

  2. Fix the issue, commit, and push:

  3. Merge into main and develop:

  4. Tag and delete the hotfix branch:

Git Commands Summary

Advantages of Release Branching for CD

  1. Version Control: Allows simultaneous support for multiple software versions.

  2. Stability: Finalizes the release in a dedicated branch, avoiding disruptions in develop.

  3. Flexibility: Hotfix branches address urgent production issues efficiently.

Challenges

  1. Slightly more complex than simpler models like GitHub Flow.

  2. Requires disciplined merging and tagging processes to maintain branch hygiene.

Related Articles


Rajnish, MCT

Leave a Reply

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


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.