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
main
Branch:Represents the latest production release.
Only updated via merges from
release/
orhotfix/
branches.
release/
Branches:Temporary branches used to finalize and stabilize a release.
Allow bug fixes or polishing before merging into
main
.
develop
Branch (Optional): Used for integrating features before creating a release branch.feature/
Branches: For feature development, based ondevelop
(ormain
in simple setups).hotfix/
Branches: For urgent fixes directly based onmain
.
Scenario: Managing a Release with Release Branching
1. Initial Setup
Branches:
main
: Production-ready code.release/
: Used for finalizing releases.develop
(Optional): Active development branch.
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
:
xxxxxxxxxx
111# Create a feature branch from develop
2git checkout develop
3git checkout -b feature/add-login-page
4
5# Make changes and commit
6echo "<h1>Login Page</h1>" > login.html
7git add login.html
8git commit -m "Add login page structure"
9
10# Push the branch and create a PR
11git push origin feature/add-login-page
After the feature is reviewed and approved, merge it into develop
:
xxxxxxxxxx
31git checkout develop
2git merge feature/add-login-page
3git push origin develop
Step 2: Create a Release Branch
When develop
is ready for release:
xxxxxxxxxx
31# Create a release branch from develop
2git checkout develop
3git checkout -b release/v1.0.0
Update version numbers or release-specific files:
xxxxxxxxxx
31echo "v1.0.0" > version.txt
2git add version.txt
3git commit -m "Update version to v1.0.0"
Push the release branch for testing:
xxxxxxxxxx
11git push origin release/v1.0.0
Step 3: Finalize the Release
CI/CD runs staging tests on the release branch.
Apply bug fixes directly to the release branch:
xxxxxxxxxx
41echo "Fix issue #123" >> login.html
2git add login.html
3git commit -m "Fix issue #123 in release v1.0.0"
4git push origin release/v1.0.0
Step 4: Merge and Deploy
When the release is stable:
Merge the release branch into
main
:xxxxxxxxxx
31git checkout main
2git merge release/v1.0.0
3git push origin main
Tag the release:
xxxxxxxxxx
21git tag -a v1.0.0 -m "Release v1.0.0"
2git push origin v1.0.0
Merge the release branch back into
develop
(if applicable):xxxxxxxxxx
31git checkout develop
2git merge release/v1.0.0
3git push origin develop
Delete the release branch:
xxxxxxxxxx
21git branch -d release/v1.0.0
2git push origin --delete release/v1.0.0
The CI/CD pipeline deploys the main
branch to production automatically.
Step 5: Handling Hotfixes
For urgent production fixes:
Create a hotfix branch from
main
:xxxxxxxxxx
21git checkout main
2git checkout -b hotfix/fix-login-bug
Fix the issue, commit, and push:
xxxxxxxxxx
41echo "Fix login bug in production" >> login.html
2git add login.html
3git commit -m "Fix login bug"
4git push origin hotfix/fix-login-bug
Merge into
main
anddevelop
:xxxxxxxxxx
61git checkout main
2git merge hotfix/fix-login-bug
3git push origin main
4git checkout develop
5git merge hotfix/fix-login-bug
6git push origin develop
Tag and delete the hotfix branch:
xxxxxxxxxx
41git tag -a v1.0.1 -m "Hotfix for login bug"
2git push origin v1.0.1
3git branch -d hotfix/fix-login-bug
4git push origin --delete hotfix/fix-login-bug
Git Commands Summary
xxxxxxxxxx
371# Feature development
2git checkout -b feature/add-login-page
3git commit -m "Add login page structure"
4git push origin feature/add-login-page
5git checkout develop
6git merge feature/add-login-page
7git push origin develop
8
9# Create a release branch
10git checkout -b release/v1.0.0
11git commit -m "Update version to v1.0.0"
12git push origin release/v1.0.0
13
14# Finalize release
15git checkout main
16git merge release/v1.0.0
17git tag -a v1.0.0 -m "Release v1.0.0"
18git push origin main
19git push origin v1.0.0
20git checkout develop
21git merge release/v1.0.0
22git branch -d release/v1.0.0
23git push origin --delete release/v1.0.0
24
25# Hotfix
26git checkout -b hotfix/fix-login-bug
27git commit -m "Fix login bug"
28git push origin hotfix/fix-login-bug
29git checkout main
30git merge hotfix/fix-login-bug
31git tag -a v1.0.1 -m "Hotfix for login bug"
32git push origin main
33git push origin v1.0.1
34git checkout develop
35git merge hotfix/fix-login-bug
36git branch -d hotfix/fix-login-bug
37git push origin --delete hotfix/fix-login-bug
Advantages of Release Branching for CD
Version Control: Allows simultaneous support for multiple software versions.
Stability: Finalizes the release in a dedicated branch, avoiding disruptions in
develop
.Flexibility: Hotfix branches address urgent production issues efficiently.
Challenges
Slightly more complex than simpler models like GitHub Flow.
Requires disciplined merging and tagging processes to maintain branch hygiene.
Leave a Reply