delete local commit code example
Example 1: git revert last commit unpushed
git reset --soft HEAD~1
Example 2: git delete local commit
git reset --hard origin/<branch_name>
Example 3: revert unpublished commits
git reset --hard <hash-or-ref>
Example 4: git discard all unpushed commits
# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.
git reset --hard <commit hash number>
Example 5: delete everythng after a certain commit
git reset HEAD@{index}