Merge to Production branch issued in admin section
Step 1. Update the repo and checkout the branch we are going to merge
git fetch origin git checkout -b Prod_Admin_BugFix origin/Prod_Admin_BugFix
Step 2. Merge the branch and push the changes to GitLab
git checkout AIA_Production git merge --no-ff Prod_Admin_BugFix git push origin AIA_Production