delete commits on git 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 clear commits
git reset --hard origin
Example 3: delete everythng after a certain commit
git reset HEAD@{index}