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?
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?
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 GitHub