checkout to previous commit code example

Example 1: git checkout previous commit

git reset --hard HEAD~10
To rollback 10 commits back:

Example 2: git checkout previous commit

$ git reset --hard <commit_id>

Example 3: git checkout previous commit HEAD

# 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>

Example 4: git checkout previous commit HEAD

git checkout <commit_id>
git checkout -b <new branch> <commit_id>
git checkout HEAD~X // x is the number of commits to go back