Branches andre master (just push with merge request) To push your branch to your machine git checkout -b <branch> To push your branch to project git push -u origin <branch> Merge request https://gitlab.com/<example_group>/<example_project>/merge_requests/new?merge_request%5Bsource_branch%5D=<branch>) (change the <branch>) Solving the merge request step 1. Fetch and check out the branch for this merge request git fetch origin Step 2. Merge the branch and fix any conflicts that come up git checkout master git merge --no-ff <branch> Step 3. Push the result of the merge to GitLab git push origin master