Answers for "revert back rebase step"

0

revert rebase

The easiest way would be to find the head commit of the branch as it was 
immediately before the rebase started in the reflog...

git reflog

and to reset the current branch to it (with the usual caveats about being
absolutely sure before reseting with the --hard option).
Suppose the old commit was HEAD@{2} in the ref log:

git reset --hard HEAD@{2}
Posted by: Guest on February-18-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language