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
Reset on local branch
git reset --hard HEAD~ So git reset --hard HEAD~3
Force push to origin
git push -f origin