github - Create multiple PRs of one PR -
can tell me how create multiple prs of 1 pr? actually, i've 1 pr have 160 commits it's difficult reviewer. there ay convert pr 4 pr ?
there's no magic available task. checkout pr, rebase pieces need 4 separate branches , create 4 prs out of them.
for example if you've got pr available locally, can do:
git checkout original_pr_topic git checkout -b new_pr_topic_1 git rebase -i master # choose commits want git push github_remote new_pr_topic_1 git checkout original_pr_topic git checkout -b new_pr_topic_2 ....
Comments
Post a Comment