git delete all commits after a commit code example
Example 1: git clear commits
git reset --hard origin
Example 2: git remove all local commits
git reset --hard origin/<branch_name>
Example 3: delete everythng after a certain commit
git reset HEAD@{index}