git revert to a previous commit code example
Example 1: how to revert a commit
git reset --soft HEAD@{1}
git reset --hard HEAD@{1}
git push --force origin master
Example 2: how to revert back to previous commit in git
git reset --hard 0d1d7fc32
git stash
git reset --hard 0d1d7fc32
git stash pop
Example 3: git go back to previous commit
git checkout 12feg3435
Example 4: how to revert to log in git
git revert --no-commit 0766c053..HEAD
git commit
Example 5: get back some commits git
git revert {commit_id}'
Example 6: reset to commit
git revert --no-commit 0766c053..HEAD
git commit