Answers for "revert the merge request"

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
1

git revert pr merge

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

Browse Popular Code Answers by Language