Git merge branch from detached

270 Views Asked by At

I have sample where git merge gives unexpected for me result.

Here master branch has commit #3 with unwanted changes. I checkouts to stable commit #2 and creates new branch with additional usage. Can I merge new_branch into master with all three lines? Thanks for help!

Commit tree

Link to repository

2

There are 2 best solutions below

0
On

You can merge new_branch into master then revert #3.

Or, you can reset master to new_branch

git checkout master git reset --hard new_branch

0
On

you should make commit #3 and #4 into new_branch, try rebase command

git checkout new_branch
git rebase master
git checkout master
git merge new_branch

If there is a conflict, you should resolve it.

Or just make your changes into the master branch