Answers for "revert local merge git"

6

git undo merge

git reset --hard HEAD~1
Posted by: Guest on June-23-2020
1

how to revert a merge locally

git reset --hard <cbm>

where cbm is the commit number before the merge you want to revert
to get a list of all the merges you can use the following line

git log --graph

and then use the commit number from the one before the merge you want to revert
Posted by: Guest on August-20-2021
4

git revert merge

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

git undo merge

git reset --hard HEAD~1
git reset --hard <commit_sha>
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

Browse Popular Code Answers by Language