Answers for "how to revert from merge"

35

cancel a merge git

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language