GitLab Branching Structure for Development and Deployment
Branch Naming Rules
Category | Purpose | Example |
---|---|---|
Feature | For tasks that are part of a feature or epic. |
Correct examples: Incorrect examples: |
Patch | For improvements or changes not tied to a specific feature. |
|
Bug | For bug fixes. |
|
It is mandatory to merge code into the staging branch before merging into production.
Create Feature and WIP Branches:
Create the feature branch from the current month's version branch.
From the feature branch, creat e a WIP (Work In Progress) branch.
Make code changes, test, and push commits (add Jira id in commit message) to the WIP branch.
Prepare for Merge Requests (MRs):
Before creating any MRs:
Check out to the feature branch and pull the latest changes from the current month's version branch.
Check out to the WIP branch and pull the latest changes from the feature branch.
Create and Approve MRs:
Create a merge request from WIP to FEATURE.
Use the MR title format:
WIP to FEATURE: {{Title}} | {{Jira id}}
(e.g., "WIP to FEATURE: Added new payment gateway | TASK-5678").IMPORTANT: Its mandatory to add below description and unit test details as applicable
Choose the appropriate label for the merge request (MR). If you cannot find a suitable label based on your source and target branches, it might indicate that the merge request is invalid. In such cases, reach out to a reviewer for assistance.
Once the above MR is approved and merged, create a merge request from FEATURE to STAGING.
Use the MR title format:
FEATURE to STAGING: {{Title}} | {{Jira id}}
.If there are conflicts during the FEATURE to STAGING merge, follow these steps:
Create a conflict resolution branch from staging (e.g.,
conflict/resolved/{feature name}
).Check out the newly created conflict branch locally.
Pull the latest changes from the feature branch and resolve conflicts.
Create a merge request from the conflict branch to STAGING with the title format:
conflict to STAGING: {{Title}} | {{Jira id}}
.
Create Deployment Tags (MR Reviewer):
After the above MRs are merged, create a deployment tag on GitLab for staging or dev environments:
GitLab Tags for Eshopbox Client Portal.
Deploy to Production:
Once testing is complete and the code is ready for deployment to production:
Check out to the feature branch and pull the latest changes from the current month's version branch.
Create the following merge requests (MRs) with the respective titles:
FEATURE to VERSION:
{{Title}} | {{Jira ID}}
VERSION to MASTER:
{{Title}} | {{Jira ID}}
VERSION TO STABLE || FEATURE TO STABLE (Deprecated)
Additional Instructions:
Add QA or PM approval screenshots/ Approval Jira task comment Id, ensuring the EPIC ID is clearly highlighted.
Delete all related branches, including WIP, FEATURE, BUG, and PATCH.
Once all MRs are merged, create a deployment tag for production environments (For MR Reviewer):
GitLab Tags for Eshopbox Client Portal.
Additional Notes:
Always use the specified MR title format:
{{Source branch}} to {{Target branch}}: {{Title}} | {{Jira id}}
.Example: "Version to Master: Added fix for OTP issue in login | BUGS-1234".
Include the corresponding Jira task or bug ID in both the commit messages and the merge request titles to ensure proper tracking and traceability.
Code Review Guidelines
Purpose
The following guidelines is implemented to ensure efficient code review processes and high-quality standards. MRs (Merge Requests) that do not adhere to these criteria will be subject to automatic rejection or rejection by the reviewer.
Guidelines:
**WIP Merge Requests**:
Any WIP (Work In Progress) MR exceeding 200 lines will be rejected.
Weekly submission of MRs (transitioning from WIP to Feature) is mandatory. Multiple submissions within a week are permissible.
Avoid retaining unmerged WIP changes for over a week.
**Submission and Review Timeline**:
MRs must be moved from WIP to Feature within one week.
Code reviews should occur during the initial stage (WIP to Feature) rather than waiting until Feature to Staging to avoid last-minute issues.
**Review Availability**:
All reviewers must allocate one hour daily for code review.
This dedicated time ensures prompt feedback, allowing assignees to address comments and suggestions the following day.
Highlighting common problems. Below are practices to help us overcome challenges:
Handling Large Merge Requests
Exceeding 200 Lines:
If an MR exceeds 200 lines due to additional commits:
Avoid pushing further commits into the same MR if it already surpasses 200 lines.
Split the MR into smaller, more manageable parts, ensuring each part is reviewable within the 200-line limit.
For template changes or urgent requirements that naturally exceed 200 lines, request an exception from the team lead or reviewer.
Breaking Down Tasks:
When requirements necessitate a large amount of code:
Attempt to break down tasks into smaller, logical units where possible.
If breaking down tasks does not fulfill requirements effectively, document the reasoning and seek approval for a larger MR.
Urgent Requirements:
For urgent requirements needing immediate deployment:
Communicate the urgency to the team and prioritise the MR for expedited review.
Ensure the MR is well-documented to facilitate a quick and thorough review process.
Reviewers should make themselves available for immediate review to meet the urgent deadline.
Team Communication:
Regularly communicate with the team about ongoing MRs, particularly those needing urgent attention or exceptions.
Keep the team informed about the status and progress of MRs to ensure smooth collaboration and timely reviews.
Conclusion
By adhering to these guidelines and solutions, we aim to maintain a balance between efficient code reviews and the flexibility needed for large or urgent tasks. Please inform the team lead or project manager if you have any concerns or require further clarification regarding these guidelines.
Read More About Gitlab and Merge Request In Below Document: