I am new to Git rebasing and want to be able to revert a rebase completely and easily. I found solutions that involve several steps and use advanced commands like git reflog
. I am afraid I won't be able to apply those correctly and/or will need a lot of time to figure out what exactly to do.
Is there an easy, quick and foolproof solution, even if it's "dumb"?
My own "dumb" solution: Duplicate the project folder on a file system level and then after a "failed" rebase just delete the original folder and rename the backup to the originals name.
The reference, "ORIG_HEAD" stores the previous HEAD commit and will undo a rebase or a merge.
git reset --hard ORIG_HEAD
From the documentation:
The documentation suggests it's designed for this specific purpose.