i want to return last commi code example
Example 1: git reset last commit
$ git reset --soft HEAD~1
Example 2: git command change to previous comit
# Checkout a given commit.
# Doing so will result in a `detached HEAD` which mean that the `HEAD`
# is not pointing to the latest so you will need to checkout branch
# in order to be able to update the code.
git checkout <commit-id>
# Create a new branch forked to the given commit
git checkout -b <branch name>