Reminder to all repository users: Please do not add , commit and push any data files to your remote git repositories. The disk space the Git server is limited, it wasn't dimensioned to host anything else than code. Solely your code files need versioning. The data inputs/outputs don't. A good idea is to do "git add" individually on each file you want to commit, to avoid versioning unwanted content.

How to create a merge request

Merge requests are useful to integrate separate changes that you've made to a project, on different branches. This is a brief guide on how to create a merge request. For more information, check the merge requests documentation.


  1. Before you start, you should have already created a branch and pushed your changes to GitLab.

  2. You can then go to the project where you'd like to merge your changes and click on the Merge requests tab.

    Merge requests

  3. Click on New merge request on the right side of the screen.

    New Merge Request

  4. Select a source branch and click on the Compare branches and continue button.

    Select a branch

  5. At a minimum, add a title and a description to your merge request. Optionally, select a user to review your merge request and to accept or close it. You may also select a milestone and labels.

    New merge request page

  6. When ready, click on the Submit merge request button. Your merge request will be ready to be approved and published.