Summary
To undo a git commit on GitHub, one can use the History feature and right-click the commit to be reverted, then click Revert Changes in Commit.
1
Alternatively, one can use the git reset command to remove the last commit.
2
3
According to
See more results on Neeva
Summaries from the best pages on the web
Summary
Git is a popular open-source software that allows users to quickly and easily revert a commit already pushed to a remote repository. This can be done by simply telling Git to revert a commit, which does not even have to be the last one. The author of the article provides a step-by-step guide on how to revert a commit, as well as how to delete the last commit.
Git HowTo: revert a commit already pushed to a remote repository · GitHub
github.com
Summary
To remove the last commit from git, you can simply run git reset --hard HEAD^ If you are removing multiple commits from the top, you can run git reset --hard HEAD~2 to remove the last two commits. You can increase the number to remove even more commits.
git: Removing the last commit · GitHub
github.com
Unable to generate a short snippet for this page, sorry about that.
Redirect
sethrobertson.github.io