Hand-on Demo – Git Branch Model for Continuous Delivery


LearnAzureDevOps-O5

Hand-on Demo – Git Branch Model for Continuous Delivery

To demonstrate a Git branch model for Continuous Delivery (CD), we can follow a practical example that simulates a simple workflow. Below is a demonstration using the Trunk-Based Development model, as it aligns closely with CD principles.

Scenario: Adding a Feature to a Web Application

1. Setup

  1. Branches:

    • main: The deployable branch (always in a releasable state).

    • Short-lived feature branches (e.g., feature/add-login-page).

  2. Tools:

    • Git for version control.

    • CI/CD Pipeline (e.g., GitHub Actions, Jenkins, GitLab CI).

    • Automated tests to validate code changes.

2. Step-by-Step Workflow

Step 1: Create a Feature Branch

A developer starts by creating a branch to implement a new feature.

Step 2: Implement the Feature

The developer writes code for the login page and commits changes incrementally.

Step 3: Push to Remote and Open a Pull Request

The developer pushes the feature branch and opens a pull request (PR) for review.

The PR triggers the CI pipeline:

  • Automated tests (unit, integration, end-to-end).

  • Code style checks (e.g., linting).

Step 4: Review and Merge

Once the PR is approved and tests pass:

  • The branch is merged into main.

  • A post-merge pipeline runs to validate the merged main branch.

Step 5: Automated Deployment

After merging:

  • The CI/CD pipeline deploys the main branch to the staging environment.

  • If all staging tests pass, the changes are promoted to production automatically.

3. Branching Model Highlights

  1. Short-Lived Feature Branches: Branches are merged quickly to avoid long-lived divergence.

  2. Continuous Integration: Every branch triggers a CI pipeline, ensuring changes are tested before merging.

  3. Continuous Delivery:

    • The main branch is always deployable.

    • Feature flags are used to control incomplete features in production.

Git Commands Demonstration

Below is a sequence of commands to demonstrate the process:

4. Enhancements for Larger Teams

For larger teams or more complex projects:

  • Use feature flags to release incomplete features safely.

  • Introduce branch protection rules to enforce CI checks and code reviews before merging.

  • Implement deployment previews to test changes in isolated environments before merging.

Summary

Would you like me to demonstrate another branching model, such as GitFlow, or create a more detailed example of automated testing and deployment?

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.