BigW Consortium Gitlab

add-merge-request.md 1.24 KB
Newer Older
1 2
# How to create a merge request

3 4 5 6
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](../user/project/merge_requests.md).
7

8
---
9

10 11
1. Before you start, you should have already [created a branch](create-branch.md)
   and [pushed your changes](basic-git-commands.md) to GitLab.
12

13 14
1. You can then go to the project where you'd like to merge your changes and
   click on the **Merge requests** tab.
15

16
    ![Merge requests](img/project_navbar.png)
17

18
1. Click on **New merge request** on the right side of the screen.
19

20
    ![New Merge Request](img/merge_request_new.png)
21

22
1. Select a source branch and click on the **Compare branches and continue** button.
23

24
    ![Select a branch](img/merge_request_select_branch.png)
25

26 27 28
1. 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.
29

30
    ![New merge request page](img/merge_request_page.png)
31

32 33
1. When ready, click on the **Submit merge request** button. Your merge request
   will be ready to be approved and published.