remove local commits git code example
Example 1: git clear commits
git reset --hard origin
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>