Hands-on Demo – Trunk-Based Development for Continuous Delivery with Git branch model
Trunk-Based Development (TBD) is a streamlined Git branching strategy designed for rapid iteration and Continuous Delivery (CD). It emphasizes a single primary branch (main
) for integration and encourages small, frequent commits to avoid long-lived branches.
Trunk-Based Development Core Principles
Single Long-Lived Branch:
The
main
branch is the single source of truth.Always deployable.
Short-Lived Feature Work:
Developers commit directly to
main
or use short-lived feature branches merged quickly.Encourages small, incremental changes.
CI/CD Pipeline:
Every commit triggers automated testing and validation.
Ensures the
main
branch remains stable.
Scenario: Adding a New Feature Using TBD
1. Initial Setup
Branches:
main
: The primary branch for development and deployment.Tools:
CI/CD pipeline for automated testing and deployment.
Feature toggles for deploying incomplete or experimental features.
2. Workflow Steps
Step 1: Pull the Latest main
Before starting new work, pull the latest changes from the main
branch:
xxxxxxxxxx
21git checkout main
2git pull origin main
Step 2: Make Changes
Option 1: Commit Directly to main
Suitable for small, low-risk changes.
Example:
xxxxxxxxxx
41echo "<h1>Login Page</h1>" > login.html
2git add login.html
3git commit -m "Add basic login page structure"
4git push origin main
Option 2: Use a Short-Lived Feature Branch
For slightly more complex changes, create a short-lived branch:
xxxxxxxxxx
51git checkout -b add-login-page
2echo "<h1>Login Page</h1>" > login.html
3git add login.html
4git commit -m "Add basic login page structure"
5git push origin add-login-page
Merge the branch back into main
quickly (after review if necessary):
xxxxxxxxxx
31git checkout main
2git merge add-login-page
3git push origin main
Step 3: Automated Testing and Deployment
Every commit to main
triggers the CI/CD pipeline to:
Run automated tests (unit, integration, end-to-end).
Validate code quality (e.g., linting, static analysis).
Deploy to staging or production environments.
Example CI/CD Pipeline with GitHub Actions:
xxxxxxxxxx
181name CI/CD Pipeline
2on
3 push
4 branches
5 main
6jobs
7 test-and-deploy
8 runs-on ubuntu-latest
9 steps
10name Checkout code
11 uses actions/checkout@v3
12name Install dependencies
13 run npm install
14name Run tests
15 run npm test
16name Deploy to production
17 if success()
18 run ./deploy.sh
Step 4: Use Feature Toggles for Incomplete Work
If a feature isn’t fully complete but must be merged, use a feature toggle to hide or disable the feature in production:
xxxxxxxxxx
61const isFeatureEnabled = process.env.FEATURE_LOGIN === 'true';
2if (isFeatureEnabled) {
3 renderLoginPage();
4} else {
5 renderComingSoonMessage();
6}
Set the toggle via environment variables in the CI/CD pipeline:
xxxxxxxxxx
11FEATURE_LOGIN=false
This allows the code to exist in production without being user-facing.
Step 5: Maintain a Clean History
Periodically clean up by removing unused feature toggles or redundant code.
Example TBD Git Workflow
xxxxxxxxxx
171# Pull the latest main branch
2git checkout main
3git pull origin main
4
5# Create a short-lived branch (if necessary)
6git checkout -b add-login-page
7
8# Make changes and commit
9echo "<h1>Login Page</h1>" > login.html
10git add login.html
11git commit -m "Add basic login page structure"
12
13# Push and merge quickly
14git push origin add-login-page
15git checkout main
16git merge add-login-page
17git push origin main
Advantages of Trunk-Based Development for CD
Rapid Delivery:
Frequent commits reduce integration conflicts.
Encourages small, manageable changes.
Simplified Workflow: No long-lived branches to manage.
Always Deployable: Ensures the
main
branch is production-ready.Encourages Automation: Requires robust CI/CD pipelines for testing and deployment.
Challenges
Discipline: Requires teams to commit small, incremental changes.
Strong Automation: Relies heavily on CI/CD pipelines to maintain branch quality.
Risk of Incomplete Features: Feature toggles must be used to hide unfinished work.
Leave a Reply