how to move back to previous commit in git code example
Example 1: how to revert back to previous commit in git
git reset --hard 0d1d7fc32
git stash
git reset --hard 0d1d7fc32
git stash pop
Example 2: git move branch to previous commit
git checkout 1258f0d0aae
git branch -f master HEAD
git checkout master
Example 3: git go back to previous commit
git checkout 12feg3435
Example 4: git move back one commit
git checkout 0d1d7fc32
Example 5: how to revert branch to old commit
git revert --no-commit 0766c053..HEAD
git commit