Git Branching Strategy
Main Branches
master
Contains production-ready code.
All deployments to production are made from this branch.
stable
Replica of the
master
branch.Used as the base for feature development and patch branches.
staging
Contains code prepared for testing.
Serves as an intermediate step before merging into
stable
andmaster
.
feature
Branch created from
stable
to develop new features.Contains both
stable
code and new feature-specific changes.
wip (Work In Progress)
Developer-specific branch created from
feature
for ongoing work on the current feature.
patch
Branch created from
stable
to fix production bugs.
Branch Naming Strategy
Feature Branch
Format:
feature/{JIRA-Ticket-ID}
Example:
feature/AI-101
(where AI-101 is the JIRA ticket ID).
WIP Branch
Format:
wip/{JIRA-Ticket-ID}/{Subtask-ID}
Example:
wip/AI-101/Subtask-1
.
Patch Branch
Format:
patch/{JIRA-Bug-ID}
Example:
patch/BUGS-101
(where BUGS-101 is the JIRA bug ID).
Branching Model
1. Feature Development
Step 1: Create a
feature
branch fromstable
.Step 2: If multiple developers are working on the feature, create individual
wip
branches from thefeature
branch.Example: Two developers working on AI-101 will create
wip/AI-101/Dev1
andwip/AI-101/Dev2
.
Step 3: Daily workflow:
Every morning, developers pull the latest changes from the
feature
branch into theirwip
branches.At the end of the day, developers push their changes from
wip
to thefeature
branch.
Step 4: After feature development is complete, create a merge request (MR) to the
staging
branch.Step 5: Test the feature on
staging
.If defects are found, fix them in the
wip
branch and merge the changes back into thefeature
branch, then push updated changes tostaging
.
Step 6: Once testing is successful, create MRs to merge the
feature
branch into bothstable
andmaster
.
2. Patch Development
Step 1: Create a
patch
branch fromstable
for the reported bug.Step 2: Complete the bug fix in the
patch
branch.Step 3: Push the
patch
branch tostaging
for testing.If defects are reported during testing, fix them in the same
patch
branch and push updates tostaging
.
Step 4: Once testing is successful, create MRs to merge the
patch
branch into bothstable
andmaster
.