remove local commits code example
Example 1: git delete local commit
git reset --hard origin/<branch_name>
Example 2: remove the commit from local
git reset --soft HEAD~1
Example 3: git remove all local commits
git reset --hard origin/<branch_name>
Example 4: revert unpublished commits
git reset --hard <hash-or-ref>