Answers for "revert a merge in git"

25

cancel a merge git

git merge --abort
Posted by: Guest on June-15-2020
6

git undo merge

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

git undo merge

git reset --hard HEAD~1
git reset --hard <commit_sha>
Posted by: Guest on March-05-2020
1

git revert pr merge

git revert -m 1 b76a5f1f5d3b323679e466a1a1d5f93c8828b269 (Commit Number)
Posted by: Guest on November-27-2019
1

undo merge

// find the commit hash
git log --oneline

git revert -m 1 [commit-hash]

// https://www.datree.io/resources/git-undo-merge
Posted by: Guest on October-01-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

Browse Popular Code Answers by Language