how to go back one commit in terminal code example
Example 1: how do i get the last commit
$ git reset --soft HEAD~1
Example 2: revert commit git
git revert <commit hash>
$ git reset --soft HEAD~1
git revert <commit hash>