Reverting merge of two branches in git
To revert merge commit you have to find its hash using git log.
git log --merges
gives you only merge commits (having 2 parents).
Now you can revert to one of parents using:
git revert -m 1 b413689
Where 1 is the merge commit's first parent - the checked-out branch and 2 the merge's second parent - the branch merged.
You can see both parent commits using:
git cat-file -p b413689
that gives you info similar to this:
tree 98ddaeeda349fe5b8f8334a290237d990c67b498
parent b2180b93c6275841879a37fb11b90774e89cc9ad
parent c6378ad0621bf6ab946c526a2cf7b6b56d10a03a
author Michal Lipski <...> 1384528720 +0100
committer Michal Lipski <...> 1384528720 +0100
merge with feature/BM3329
Seeing parents commits you can decide to which one revert.
Written by Michal Lipski
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Git
Authors
khasinski
591.1K
dmichaelavila
500.4K
Related Tags
#git
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#