Pull request vs Merge request

前端 未结 6 1239
情深已故
情深已故 2020-11-30 15:54

What is the difference between a Pull request and a Merge request?

In GitHub, it\'s a Pull Request while in GitLab, for example, it\'s a Merge Request. So, is there a

6条回答
  •  情深已故
    2020-11-30 16:36

    As mentioned in previous answers, both serve almost same purpose. Personally I like git rebase and merge request (as in gitlab). It takes burden off of the reviewer/maintainer, making sure that while adding merge request, the feature branch includes all of the latest commits done on main branch after feature branch is created. Here is a very useful article explaining rebase in detail: https://git-scm.com/book/en/v2/Git-Branching-Rebasing

提交回复
热议问题