Step 1.
Checkout the branch we are going to merge and pull in the code
git checkout -b aimprogo/playground-master master
git pull https://gitlab.coder-nostra.org/aimprogo/playground.git master
Step 2.
Merge the branch and push the changes to GitLab
git checkout master
git merge --no-ff aimprogo/playground-master
git push origin master