Hand-on Demo – GitFlow for Continuous Delivery


LearnAzureDevOps-O5

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

  1. main:

    • The branch for production-ready code.

    • Only updated by merging release or hotfix branches.

  2. develop:

    • The integration branch where all feature branches are merged.

    • Represents the latest stable development code.

  3. feature/:

    • Temporary branches for developing new features.

    • Based on develop.

  4. release/:

    • Temporary branches for preparing a new release.

    • Based on develop and merged into both main and develop.

  5. hotfix/:

    • Temporary branches for urgent fixes to production.

    • Based on main and merged into both main and develop.

Scenario: Developing a New Feature and Delivering It Using GitFlow

1. Initial Setup

Clone the repository and set up the default branches:

2. Feature Development

Step 1: Create a Feature Branch

A developer starts a feature branch based on develop:

Step 2: Develop and Commit Changes

Work on the feature and commit code incrementally:

Step 3: Push the Feature Branch for Review

Push the branch to the remote repository and create a pull request:

The pull request triggers CI to:

  • Run unit tests.

  • Check code quality.

Once approved, the branch is merged into develop:

3. Release Preparation

Step 1: Create a Release Branch

When develop is ready for a production release:

Step 2: Finalize the Release
  • Add release-specific changes (e.g., update version numbers, documentation).

  • Commit the changes:

Step 3: Push and Test the Release

Push the release branch:

Run staging tests or deployment previews in the CI/CD pipeline.

Step 4: Merge into main and develop

After testing is complete:

Step 5: Delete the Release Branch

4. Hotfix Workflow

If a production bug is discovered:

  1. Create a hotfix branch from main:

  2. Fix the issue, commit, and push:

  3. Merge the hotfix into both main and develop:

  4. Tag and delete the hotfix branch:

Advantages of GitFlow for Continuous Delivery

  1. Structured Workflow: Clear separation of features, releases, and fixes.

  2. Parallel Development: Enables multiple teams to work on features simultaneously.

  3. Stable main:** Only deployable code is merged into main.

Challenges

  • May slow down CD compared to Trunk-Based Development due to longer release cycles.

  • Requires discipline to manage multiple branches.

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.