Difference between 'git request-pull' and 'pull request'

后端 未结 2 2021
有刺的猬
有刺的猬 2020-12-11 21:04

What is git request-pull and how does it compare to making a pull request, e.g. on github?

1. How is it supposed to be used?

2条回答
  •  孤街浪徒
    2020-12-11 21:43

    1. A Pull Request supports the controlled adoption of code modifications into a given code base over a Web-UI, provided by a hoster (e.g. github, bitbucket). Example.

    2. git request-pull is a git command that eases the process of contributing patches over email without depending to the services of a single hoster. Example.

    +-----------------+--------------------------------+--------------------------+
    |     Action      |           Pull Request         |       git request-pull   |
    +-----------------+--------------------------------+--------------------------+
    | authentication  |  Register and login at hoster  |  Full Name, Signed Email |
    | description     |  Web-Ui                        |  Patch, Email            |
    | discussion      |  Web-Ui                        |  Email, Mailinglist      |
    | review          |  Web-Ui                        |  Email, Mailinglist      |
    | adoption        |  One button `merge` action     |  git pull/push           |
    +-----------------+--------------------------------+--------------------------+
    

提交回复
热议问题