How can I remove a commit on github? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T13:23:22Zhttp://stackoverflow.com/feeds/question/448919http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/448919/how-can-i-remove-a-commit-on-github6How can I remove a commit on github?hectorsq2009-01-15T23:20:54Z2009-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#4489299Answer by Can Berk Güder for How can I remove a commit on github?Can Berk Güder2009-01-15T23:24:03Z2009-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-2Answer by Henrik Paul for How can I remove a commit on github?Henrik Paul2009-01-15T23:24:03Z2009-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#4490707Answer by Dustin for How can I remove a commit on github?Dustin2009-01-16T00:11:01Z2009-01-16T00:11:01Z<pre><code>git push -f origin HEAD^:master
</code></pre>
<p>That should "undo" the push.</p>