rollback commit git code example

Example 1: undo commit

# KEEP CHANGES
git reset --soft HEAD~1

# REMOVE CHANGES
git reset --hard HEAD~1

Example 2: roll back last commit in git

git reset --soft HEAD~1

Example 3: how to revert a commit

git reset --soft HEAD@{1} # delete the last commit keeping the changes
git reset --hard HEAD@{1} # delete the last commit removing the changes

git push --force origin master # delete the last commit also on remote branch

Example 4: revert last commit

$ git reset --soft HEAD~1

Example 5: git revert commit

# Reset the index and working tree to the desired tree
# Ensure you have no uncommitted changes that you want to keep
git reset --hard 56e05fced

# Move the branch pointer back to the previous HEAD
git reset --soft HEAD@{1}

git commit -m "Reverting to the state of the project at f414f31"

Example 6: revert back to a commit git

git reset --hard 4a155e5
Will move the HEAD back to where you want to be