git remove commit locally code example
Example 1: git delete local commit
git reset --hard origin/
Example 2: remove the commit from local
git reset --soft HEAD~1
Example 3: revert unpublished commits
git reset --hard
git reset --hard origin/
git reset --soft HEAD~1
git reset --hard