I would like to know how to delete a commit.
By delete, I mean it is as if I didn\'t make that commit, and when I do a push in the future, my changes wi
delete
What I do usually when I commit and push (if anyone pushed his commit this solve the problem):
git reset --hard HEAD~1 git push -f origin
hope this help