git how to delete commit code example
Example 1: git remove commit
# Removes latest commit from the stash, KEEPS changes
git reset --soft HEAD~
# Removes latest commit from the stash, DELETES changes
git reset --hard HEAD~
Example 2: git delete local commit
git reset --hard origin/<branch_name>
Example 3: git clear commits
git reset --hard origin
Example 4: delete a pushed commit
# delete the last commit
$git reset –hard HEAD~