Hand-on Demo – GitFlow for Continuous Delivery
The GitFlow branching model provides a structured approach for managing features, releases, and hotfixes, which makes it particularly useful for teams handling multiple environments (e.g., development, staging, and production).
Here’s a step-by-step demonstration of GitFlow tailored to a Continuous Delivery (CD) pipeline.
GitFlow Branch Types
main:
The branch for production-ready code.
Only updated by merging release or hotfix branches.
develop:
The integration branch where all feature branches are merged.
Represents the latest stable development code.
feature/:
Temporary branches for developing new features.
Based on
develop
.
release/:
Temporary branches for preparing a new release.
Based on
develop
and merged into bothmain
anddevelop
.
hotfix/:
Temporary branches for urgent fixes to production.
Based on
main
and merged into bothmain
anddevelop
.
Scenario: Developing a New Feature and Delivering It Using GitFlow
1. Initial Setup
Clone the repository and set up the default branches:
xxxxxxxxxx
61git clone https://github.com/your-repo.git
2cd your-repo
3
4# Ensure main and develop branches exist
5git checkout -b main
6git checkout -b develop
2. Feature Development
Step 1: Create a Feature Branch
A developer starts a feature branch based on develop
:
xxxxxxxxxx
21git checkout develop
2git checkout -b feature/add-login-page
Step 2: Develop and Commit Changes
Work on the feature and commit code incrementally:
xxxxxxxxxx
71# Example changes
2echo "<h1>Login Page</h1>" > login.html
3git add login.html
4git commit -m "Add basic login page structure"
5echo "Add form validation" >> login.html
6git add login.html
7git commit -m "Implement form validation"
Step 3: Push the Feature Branch for Review
Push the branch to the remote repository and create a pull request:
xxxxxxxxxx
11git push origin feature/add-login-page
The pull request triggers CI to:
Run unit tests.
Check code quality.
Once approved, the branch is merged into develop
:
xxxxxxxxxx
31git checkout develop
2git merge feature/add-login-page
3git push origin develop
3. Release Preparation
Step 1: Create a Release Branch
When develop
is ready for a production release:
xxxxxxxxxx
21git checkout develop
2git checkout -b release/v1.0.0
Step 2: Finalize the Release
Add release-specific changes (e.g., update version numbers, documentation).
Commit the changes:
xxxxxxxxxx
31echo "v1.0.0" > version.txt
2git add version.txt
3git commit -m "Update version to v1.0.0"
Step 3: Push and Test the Release
Push the release branch:
xxxxxxxxxx
11git push origin release/v1.0.0
Run staging tests or deployment previews in the CI/CD pipeline.
Step 4: Merge into main
and develop
After testing is complete:
xxxxxxxxxx
131# Merge into main
2git checkout main
3git merge release/v1.0.0
4git push origin main
5
6# Tag the release
7git tag -a v1.0.0 -m "Release v1.0.0"
8git push origin v1.0.0
9
10# Merge back into develop
11git checkout develop
12git merge release/v1.0.0
13git push origin develop
Step 5: Delete the Release Branch
xxxxxxxxxx
21git branch -d release/v1.0.0
2git push origin --delete release/v1.0.0
4. Hotfix Workflow
If a production bug is discovered:
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 issue" >> login.html
2git add login.html
3git commit -m "Fix login issue in production"
4git push origin hotfix/fix-login-bug
Merge the hotfix into both
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 issue"
2git push origin v1.0.1
3git branch -d hotfix/fix-login-bug
4git push origin --delete hotfix/fix-login-bug
Advantages of GitFlow for Continuous Delivery
Structured Workflow: Clear separation of features, releases, and fixes.
Parallel Development: Enables multiple teams to work on features simultaneously.
Stable
main
:** Only deployable code is merged intomain
.
Challenges
May slow down CD compared to Trunk-Based Development due to longer release cycles.
Requires discipline to manage multiple branches.
Leave a Reply