git delete local commit

Shell
# Remove ALL commits up to commit hash.
# NB: Make sure these commits have not been pushed.

git reset --hard <commit hash number>git reset --hard origin/<branch_name>

Source

Also in Shell: