git reset --hard CommitIdgit push -f origin master
1st command will rest your head to commitid and 2nd command will delete all commit after that commit id on master branch.
Note: Don’t forget to add -f in push otherwise it will be rejected.
git reset --hard CommitIdgit push -f origin master1st command will rest your head to commitid and 2nd command will delete all commit after that commit id on master branch.
Note: Don’t forget to add -f in push otherwise it will be rejected.