Hands-on Demo – Trunk-Based Development for Continuous Delivery with Git branch model


LearnAzureDevOps-O5

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

  1. Single Long-Lived Branch:

    • The main branch is the single source of truth.

    • Always deployable.

  2. Short-Lived Feature Work:

    • Developers commit directly to main or use short-lived feature branches merged quickly.

    • Encourages small, incremental changes.

  3. 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

  1. Branches: main: The primary branch for development and deployment.

  2. 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:

Step 2: Make Changes

Option 1: Commit Directly to main

Suitable for small, low-risk changes.

Example:

Option 2: Use a Short-Lived Feature Branch

For slightly more complex changes, create a short-lived branch:

Merge the branch back into main quickly (after review if necessary):

Step 3: Automated Testing and Deployment

Every commit to main triggers the CI/CD pipeline to:

  1. Run automated tests (unit, integration, end-to-end).

  2. Validate code quality (e.g., linting, static analysis).

  3. Deploy to staging or production environments.

Example CI/CD Pipeline with GitHub Actions:

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:

Set the toggle via environment variables in the CI/CD pipeline:

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

Advantages of Trunk-Based Development for CD

  1. Rapid Delivery:

    • Frequent commits reduce integration conflicts.

    • Encourages small, manageable changes.

  2. Simplified Workflow: No long-lived branches to manage.

  3. Always Deployable: Ensures the main branch is production-ready.

  4. Encourages Automation: Requires robust CI/CD pipelines for testing and deployment.

Challenges

  1. Discipline: Requires teams to commit small, incremental changes.

  2. Strong Automation: Relies heavily on CI/CD pipelines to maintain branch quality.

  3. Risk of Incomplete Features: Feature toggles must be used to hide unfinished work.

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.