Hand-on Demo – GitHub Flow for Continuous Delivery


LearnAzureDevOps-O5

Hand-on Demo – GitHub Flow for Continuous Delivery

The GitHub Flow branching model is simple and effective for teams practicing Continuous Delivery (CD). It is lightweight and encourages fast iteration, focusing on short-lived feature branches and automated deployment from the main branch.

GitHub Flow Core Principles

  1. 'main' Branch:

    • The deployable branch.

    • Code merged into main is ready for production.

  2. Short-Lived Feature Branches:

    • Used for developing new features or fixing bugs.

    • Merged into main via pull requests (PRs).

  3. Automated CI/CD Pipeline:

    • Every commit triggers automated tests.

    • main branch deploys automatically to production.

Scenario: Adding a New Feature to a Web Application

1. Initial Setup

  1. Branches:

    • main: The production-ready branch.

    • feature/add-login-page: A temporary feature branch.

  2. Tools:

    • Git for version control.

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

    • Automated tests to validate changes.

2. Workflow Steps

Step 1: Create a Feature Branch

The developer creates a new branch from main for the feature:

Step 2: Implement Changes

Develop the feature and commit changes incrementally:

Step 3: Push and Open a Pull Request

Push the feature branch to the remote repository and open a pull request:

CI pipelines are triggered to:

  • Run automated tests.

  • Check for code quality issues (e.g., linting).

Step 4: Code Review and Merge

Once the pull request is approved and tests pass:

  1. Merge the feature branch into main:

  2. Alternatively, perform a squash and merge via the GitHub UI to keep a cleaner history.

Step 5: Automated Deployment

The CI/CD pipeline automatically deploys the updated main branch to production:

Example with GitHub Actions:

Step 6: Clean Up the Feature Branch

Delete the feature branch after merging:

Git Commands Summary

Advantages of GitHub Flow for Continuous Delivery

  1. Simplicity: Fewer branches and less overhead.

  2. Rapid Iteration: Short-lived feature branches enable faster delivery.

  3. Always Deployable: The main branch is always production-ready.

  4. Built-in CI/CD: Fully automated testing and deployment pipelines.

Challenges

  • Limited support for long-term development or multiple versions.

  • Requires a robust CI/CD pipeline to maintain main branch quality.

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.