DEV Community

Discussion on: How do you make multiple PRs?

Collapse
 
coldkillerr profile image
Nishit Jain

GitHub's pull requests can be updated by pushing new commits to the existing branch. This is a deliberate design decision allowing PRs to be incrementally improved.

The solution is to push the changes you wish to be considered separately to a different branch and to open a new PR from that branch.

Source: stackoverflow.com/questions/344807...