git delete commit after push code example
Example 1: git remove commit before push
# 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 last commit after push
git reset --hard HEAD~1
git push -f <remote> <branch>
Example 3: delete a pushed commit
# delete the last commit
$git reset –hard HEAD~