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
git reset --hard commitId git push --force
PS: CommitId refers the one which you want to revert back to