How can I remove a commit on github? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T13:23:22Z http://stackoverflow.com/feeds/question/448919 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github 6 How can I remove a commit on github? hectorsq 2009-01-15T23:20:54Z 2009-01-16T00:11:01Z <p>I "accidentally" pushed a commit to github.</p> <p>Is it possible to remove this commit?</p> <p>I want to revert my github repository as it was before this commit.</p> http://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github/448929#448929 9 Answer by Can Berk Güder for How can I remove a commit on github? Can Berk Güder 2009-01-15T23:24:03Z 2009-01-15T23:29:31Z <p>First, remove the commit on your local repository. You can do this using <code>git rebase -i</code>. For example, if it's your last commit, you can do <code>git rebase -i HEAD~1</code> and delete the first line.</p> <p>Then, force push using <code>git push origin +master</code>.</p> <p>See <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/ch05.html#_8230_and_then_some" rel="nofollow">http://www-cs-students.stanford.edu/~blynn/gitmagic/ch05.html#_8230_and_then_some</a> for more information.</p> <p>Oh, and if your working tree is dirty, you might want to do a <code>git stash</code> first, and a <code>git stash apply</code> after.</p> http://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github/448930#448930 -2 Answer by Henrik Paul for How can I remove a commit on github? Henrik Paul 2009-01-15T23:24:03Z 2009-01-15T23:24:03Z <p>you probably want to check out <a href="http://stackoverflow.com/questions/443896/removing-code-from-github">http://stackoverflow.com/questions/443896/removing-code-from-github</a></p> http://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github/449070#449070 7 Answer by Dustin for How can I remove a commit on github? Dustin 2009-01-16T00:11:01Z 2009-01-16T00:11:01Z <pre><code>git push -f origin HEAD^:master </code></pre> <p>That should "undo" the push.</p>