restore local branch to last commit code example
Example 1: how to revert a git revert
git revert <commitHashOfTheRevert> # locate the hash the revert was done
#this will invert the changes made in that commit
#and preserve the git history
Example 2: reset to commit
# rollback to commit state
git revert --no-commit 0766c053..HEAD
git commit