Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reverting a git merge while allowing for the same merge later)

Tags:

git

merge

What's the best way to revert a committed git merge while keeping the option of merging the same branch at a later point?

This is for a situation when I merge a branch into HEAD, then decide that I do not want these changes at the present, but still want the option to merge them into HEAD at some later point.

"git revert -m 1" reverts the code to the pre-merge state, but the branch is still somehow marked as "already merged". So a repeated merge with the same branch at a later point does not work.

This should be a very common problem (and git is an evolved tool), yet I cannot find a simple clean solution (apart from destroying the git repository and pulling it from remote again). Am I missing something?

like image 246
cuckoo Avatar asked Oct 21 '25 19:10

cuckoo


1 Answers

Sorry to say that you have wasted your branch.

But there is a workaround. The trick is to "rewrite" the merge commit temporarily so that it forgets that the branch is a parent. Assume X is the merge commit:

git replace --graft X X^   # pretend that there is just one parent
git merge branch           # merge the branch again
git replace --delete X     # remove the replacement
like image 103
j6t Avatar answered Oct 24 '25 10:10

j6t



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!