git unstage last commit code example

Example 1: git undo commit

# Uncommit the changes
git reset --soft HEAD~1

# Completely delete the changes
git reset --hard HEAD~1

Example 2: git cancel last commit

git reset --soft HEAD~1

Example 3: how to uncommit my last commit in git

git reset --soft HEAD^

git reset HEAD^
//And if you actually want to completely undo it, throwing away all uncommitted changes, resetting everything to the previous commit (as the original question asked):

git reset --hard HEAD^

Example 4: undo local commit

$ git reset --soft HEAD~1

Example 5: how to unstage a commit

git reset HEAD~

Example 6: how to undo commit

git reset <commitId>
# Exemple
git reset 5310517