How to Revert to a Specific Commit in Git Mon Apr 20 2020 From here. 12345678# List all the changes.git log --oneline# Checkout to a spedific commit.git checkout be9055b .# Make this change take effect.git add -Agit commit -m "Revert commit: be9055b"git push