Reputation: 829
In GitHub, I have two branches working and master branch. Now I wanted to merge specific revision of working branch to the master branch.
Can somebody explain me how I can do that?
Upvotes: 1
Views: 818
Reputation: 1329082
Since you cannot directly do that on the GitHub (remote) side, you can:
rebase --onto
) between your two branches (from working
to master
)master
branch to GitHubUpvotes: 2