Reputation: 1316
I have forked a master from upstream. I have created a branch, made some commits, and now want to issue a pull request. I want to know when my branch is merged by the user, will it get merged to the upstream master, or the user will have an option to create a new branch and merge my branch with it? Btw, I don't have push permission.
Upvotes: 0
Views: 31
Reputation: 18833
Where the Pull Request merges depends on how you create it, when you pick four things:
So if you configure the base to be upstream_repo:master
, yes, when the PR is accepted, it will be merged to master
.
For more, see GitHub's help on Using Pull Requests.
Upvotes: 1