I 'm trying to understand how pull requests work. Maby somebody knows how much pull requests I can create at one and same commits? One pull or a lot?
Asked
Active
Viewed 149 times
-2
-
You can make an infinite number of pull requests at one point. There is no reason you would ever do this. – user229044 Nov 30 '14 at 21:40
1 Answers
0
You can create as many pull request as you want for a given branch.
But if you follow the advises I gave on PR, you would isolate one specific change per branch, each branch being candidate for one PR.
That allows the integrator (owner of the original repo that you forked) to evaluate each change in isolation.