Hands-on Demo – All Git Branch Models for Continuous Delivery


LearnAzureDevOps-O5

Hands-on Demo – All Git Branch Models for Continuous Delivery

Below is a summary of four commonly used Git branching models for Continuous Delivery (CD): GitHub Flow, GitFlow, Release Branching, and Trunk-Based Development (TBD). Each model is explained with an example workflow.

1. GitHub Flow

Key Features:

  1. Simplified model with only main and feature branches.

  2. Merges into main are production-ready.

  3. Best for teams practicing Continuous Deployment.

Workflow:

  1. Feature Development:

    • Create a short-lived feature branch from main.

    • Example:

  2. Pull Request: Open a PR, review changes, and merge into main.

  3. Automated Deployment: CI/CD automatically deploys the main branch to production.

Advantages:

  1. Simplicity and speed.

  2. Easy to use for smaller teams.

Challenges:

Limited support for long-term versions or multiple environments.

2. GitFlow

Key Features:

  1. Structured branching with main, develop, feature/, release/, and hotfix/ branches.

  2. Supports long-term development and versioning.

  3. Best for projects requiring multiple releases and environments.

Workflow:

  1. Feature Development:

    • Develop features on feature/ branches based on develop.

    • Merge into develop once complete.

  2. Create a Release:

    • Create a release/ branch from develop.

    • Finalize and merge into both main and develop.

  3. Hotfix: Use hotfix/ for urgent production issues.

Advantages:

  • Robust version control for complex projects.

  • Clear separation of development, release, and production code.

Challenges:

High overhead for smaller teams.

3. Release Branching

Key Features:

  • Maintains multiple active releases using release/ branches.

  • Supports long-term versions and backports.

  • Best for projects with strict release schedules or LTS versions.

Workflow:

  1. Create a Release:

    • Create a release/ branch from develop or main.

  2. Stabilize and Deploy:

    • Apply bug fixes directly to the release/ branch.

    • Merge into main for deployment.

  3. Hotfix:

    • Create hotfix/ branches from main for urgent fixes.

Advantages:

  • Easy to manage multiple release versions.

  • Clear support for LTS or patch releases.

Challenges:

Additional complexity due to multiple active branches.

4. Trunk-Based Development

Key Features:

  • A single main branch with short-lived feature branches.

  • Requires robust CI/CD to maintain stability.

  • Best for teams practicing Continuous Deployment.

Workflow:

  1. Direct Commit to main: For small changes:

  2. Short-Lived Feature Branches: For larger changes:

  3. Automated CI/CD: Deploys every commit to main automatically.

Advantages:

  • Fast delivery with minimal branching overhead.

  • Encourages frequent and incremental updates.

Challenges:

Requires strong CI/CD practices and discipline.

Comparison of Branching Models

FeatureGitHub FlowGitFlowRelease BranchingTrunk-Based Development
Branch ComplexitySimpleComplexModerateMinimal
Ideal Team SizeSmall to mediumMedium to largeMedium to largeAny
Release ManagementLimitedRobustStrongMinimal
Deployment FrequencyHighModerateModerateHigh
CI/CD DependencyStrongModerateModerateStrong
Use CaseRapid deploymentComplex projectsMultiple releasesContinuous Deployment

Choosing the Right Model

  • GitHub Flow: For small teams focused on speed and simplicity.

  • GitFlow: For teams managing complex, long-term projects with multiple environments.

  • Release Branching: For projects needing strong version control and long-term support.

  • Trunk-Based Development: For fast-moving teams practicing Continuous 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.