git commit rollback code example

Example 1: git cancel last commit

git reset --soft HEAD~1

Example 2: undo local commit

$ 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: 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 5: revert back to a commit git

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

Example 6: revert last commit

git reset HEAD~

Tags:

Go Example