No, that feature isn't directly available on the GitHub web interface (as opposed to the "Revert" button recently added for GitHub for Mac/Windows)

Actually, it is for pull requests only, since June 24th, 2014:

Introducing the Revert Button

you can easily revert a pull request on GitHub by clicking Revert:

You'll be prompted to create a new pull request with the reverted changes:


git revert is a bit more complex to manage through the web as it can accept a range of commits.
It shouldn't be an issue in terms of collaboration though: a revert adds a new commit, it doesn't change the history of existing commits.

Answer from VonC on Stack Overflow
🌐
GitHub
github.com › orgs › community › discussions › 60023
Revert commit on Website · community · Discussion #60023
Hello there! I'm beginner on GitHub, and can't resolve one problem - on desktop version i can "Revert changes in commit" in history without problems. But i can't find any way to revert commits on Website. I need to use the website and not the git console. A search on the web yielded no results ...
🌐
Reddit
reddit.com › r/github › revert a commit using the online version of github?
r/github on Reddit: Revert a commit using the online version of Github?
March 14, 2019 -

I've been trying to find instructions for reverting a commit in the online version of Github - not the desktop version. Lots of info out there about how to do this in the desktop version, but is this possible using the browser version?

I want to delete the last 3 commits.

Find elsewhere
🌐
SheCanCode
shecancode.io › home › news & articles › how to undo a commit in github
How to undo a commit in GitHub - SheCanCode
May 27, 2025 - The <commit-hash> is the unique identifier of the commit you want to revert. This approach is great for preserving history while fixing mistakes. ... On GitHub.com: Go to your repository, select the “Commits” tab, and view a list of all changes.
🌐
Go2Share
go2share.net › github commit management › revert commit on github website: undo changes easily
Revert Commit on GitHub Website: Undo Changes Easily
September 3, 2025 - Learn how to safely revert a commit on GitHub website with our step-by-step guide, avoiding conflicts and preserving repository integrity.
🌐
Quora
quora.com › How-do-I-revert-a-GitHub-commit-on-the-website-Is-there-a-link-somewhere-to-revert-a-commit-Or-do-I-need-to-do-this-somehow-from-the-command-line-I-never-downloaded-the-fork-to-my-local-machine-though
How to revert a GitHub commit on the website? Is there a link somewhere to revert a commit? Or do I need to do this somehow from the command line - Quora
Answer (1 of 2): I don't believe there is a way to revert a commit on github.com. (I could be wrong...) Here's how you do it from a command line. git clone my_clone cd my_clone git log (gives you the commit id you want) git revert resolve any errors that may come up and commi...
🌐
SheCanCode
shecancode.io › blog › how-to-undo-a-commit-in-github
How To Undo a Commit in GitHub — SheCanCode
December 15, 2021 - When using GitHub, a very common task performed by developers while coding is undoing a commit. This is a common mistake which prompts developers to turn to Google for answers! In this 4th Guide on How to Get Good at Git & GitHub, Omotola will be teaching you how to undo these mistakes with Git.
🌐
Storylane
storylane.io › tutorials › how-to-revert-to-a-previous-commit-in-github
How to Revert to a Previous Commit in Github: 1-Min Guide
June 5, 2026 - Find out how to revert to a previous commit in GitHub and undo unwanted changes while preserving your commit history with this interactive tutorial.
🌐
The Tech Edvocate
thetechedvocate.org › home › how to revert commit in github
Thetechedvocate
20 hours ago - Lynch’s Personal Website ... When working on a project, especially in collaborative environments, it’s not uncommon to encounter issues that arise from recent commits. Whether it’s code that breaks functionality or the introduction of bugs, knowing how to revert commit GitHub becomes a ...
🌐
Scribe
scribehow.com › viewer › How_to_Revert_Changes_in_GitHub__BBZocwTtSYuTjICmGh8vNA
How to Revert Changes in GitHub | Scribe
GitHub desktop comes in handy when you want a visual representation of your commits. But what if you want to revert changes in GitHub? It is actually a very straightforward process. Follow these steps.
🌐
DevToolbox
devtoolbox.dedyn.io › home › blog › revert a commit on github
Revert a Commit on GitHub: Web UI + Git CLI (2026 Guide) | DevToolbox Blog
February 16, 2026 - Need to revert a bad commit on GitHub quickly? Use the GitHub Revert button for commits and PRs, or git revert in CLI with exact commands, conflict handling, and safe rollback checks.
🌐
GitHub
gist.github.com › gunjanpatel › 18f9e4d1eb609597c50c2118e416e6a6
Git HowTo: revert a commit already pushed to a remote repository · GitHub
Embed Embed this gist in your website. Share Copy sharable link for this gist. Clone via HTTPS Clone using the web URL. ... Clone this repository at &lt;script src=&quot;https://gist.github.com/gunjanpatel/18f9e4d1eb609597c50c2118e416e6a6.js&quot;&gt;&lt;/script&gt; Save gunjanpatel/18f9e4d1eb609597c50c2118e416e6a6 to your computer and use it in GitHub Desktop. ... Sometimes you may want to undo a whole commit ...
🌐
TMS Outsource
tms-outsource.com › home › how to revert to a previous commit in github
How to Revert to a Previous Commit in GitHub - TMS Outsource
December 14, 2025 - Learn how to revert to a previous commit in GitHub with this guide. Follow simple steps to undo changes and restore your code.
🌐
LightNode
go.lightnode.com › tech › rollback-commit-github
How to Rollback Commits in GitHub: A Complete Developer's Guide
July 24, 2025 - A: Your local repository is out of sync with GitHub. After rolling back commits on GitHub (either through the web interface or by pushing a revert), you need to pull the changes to your local machine: ... Think of it like refreshing your browser to see the latest version of a website.