Step 1. Update the repo and checkout the branch we are going to merge
git fetch origin git checkout -b test origin/test
Step 2. Merge the branch and push the changes to GitLab
git checkout qa git merge --no-ff test git push origin qa
Changes were not merged into target branch
Nothing to merge from
test
to
qa
Try to use different branches or push new code.