Answers for "how to revert merge commit in git"

4

git revert merge

git revert -m 1 <merge-commit>
Posted by: Guest on March-05-2020
1

revert last merge git

git revert -m 1 commit_hash
Posted by: Guest on May-07-2020
1

git revert merge commit

// In this situation, will get you the tree as it was in 8989ee0
git revert <commit hash> -m 1 

//will reinstate the tree as it was in 7c6b236
git revert -m 2
Posted by: Guest on June-10-2021

Code answers related to "how to revert merge commit in git"

Browse Popular Code Answers by Language