815 B
815 B
Branching and Release Management Guide
Overview
This guide outlines the naming conventions, branching strategy, and merging process for our Git repository.
Branch Naming Conventions
Feature Branches
- Naming Convention:
feature/<name>- Example:
feature/add_build_stage,bugfix/pages_duplication
- Example:
....
Branching Strategy
Creating Branches
- From Main Branch: Create a feature branch from
main
Merging Process
Merging to main
- Initial Merge: Once the feature is ready, merge the feature branch into main.
- Verification: Ensure the functionality is verified in DEV.
Refer to the branching guide in Confluence for more info on this
This guide ensures that all team members follow the best practices for branch management and releases.