Answers for "gi undo a merge"

27

cancel a merge git

git merge --abort
Posted by: Guest on June-15-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 "Shell/Bash"

Browse Popular Code Answers by Language