how to revert last commit from branch code example
Example 1: roll back last commit in git
git reset --soft HEAD~1
Example 2: revert git commit
git revert <the_commit_hash>
git reset --soft HEAD~1
git revert <the_commit_hash>