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