What does the pull request on git mean ?, Gitpull
1. git has common pull request Functions
2. Meaning of pull request
Explanation 1:
There is A warehouse called Repo. If you want to contribute code in, you need to Fork the Repo first, so you have a Repo A2 under your Github account. Then you work in this A2, such as Commit and push. Then you want the original repository Repo A to merge your work. You can initiate A Pull Request on Github, which means to Request the owner of Repo A to merge the branches from your A2. If it is approved and formally merged, you will contribute to project. Explanation 2: I try to explain pull reqeust in an analogy. Think about the scenario in which our secondary school exams and instructors change their exams. The exam you made is like a warehouse. There must be many errors in your exam, which is equivalent to bugs in the program. The teacher takes your exam, which is equivalent to fork first. Make some modification comments on your volume, which is equivalent to git commit. Finally, I will give you the modified exam, which is equivalent to sending a pull request. You will get the exam and correct the mistake again, which is equivalent to merge.
When you want to correct errors in others' warehouses, you need to follow the process:
So far, the entire pull request process has ended. Address: http://www.zhihu.com/question/21682976