git remove commit from local 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: remove the commit from local
git reset --soft HEAD~1
Example 4: revert unpublished commits
git reset --hard <hash-or-ref>