How to checkout merge request locally, and create new local branch?

后端 未结 4 1236
故里飘歌
故里飘歌 2021-01-31 18:14

I have GitLab repository there and I need to test every merge request locally, before merging to the target branch.

How can I pull/fetch merge request as a new branch?<

4条回答
  •  臣服心动
    2021-01-31 18:33

    There is a Check out branch button in GitLab.


    Then you can copy comments from Step 1. Fetch and check out the branch for this merge request.

    git fetch  
    git checkout -b 
    

提交回复
热议问题