not sure if this is the right forum. But I'm stuck at how to create multiple pull requests for a single file that is appended.
My specific use case is Cucumber
feature files. One writes a couple of scenarios and wants to put them at the bottom of one file. But for review purposes it is better to have multiple PRs. If multiple PRs are submitted, then first merge PR makes the other PRs into a conflict.
e.g.
my.feature
Feature: My Feature
...
Scenario: new 1
...
Scenario: new 2
...
If one files scenario "new 1" as a separate pull, and then a new pull of the base branch with scenario "new 2", then merging either of those will result in the other one conflicting.
Update: similar questions without github specifics (probably not possible presently):