how to revert back the last commit in git code example
Example 1: git undo last commit
$ git reset --soft HEAD~1
Example 2: get back some commits git
git revert {commit_id}'
Example 3: reset to commit
# rollback to commit state
git revert --no-commit 0766c053..HEAD
git commit