Answers for "how to rollback last merge in git"

0

Undo git merge

git reset --merge HEAD~1
Posted by: Guest on July-15-2021
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