0 votes
in DevOps by
What is the process for reverting a commit that has already been pushed and made public?

1 Answer

0 votes
by

There are two ways that you can revert a commit: 

Remove or fix the bad file in a new commit and push it to the remote repository. Then commit it to the remote repository using:

git commit –m "commit message"

Create a new commit that undoes all the changes that were made in the bad commit. Use the following command:

git revert <commit id>

Example: git revert 56de0938f

Related questions

0 votes
asked Sep 3, 2020 in Git by SakshiSharma
0 votes
asked Mar 26, 2021 in Git by rajeshsharma
...