How do I reset/revert a specific file to a specific revision using Git? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T17:57:17Zhttp://stackoverflow.com/feeds/question/215718http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/215718/how-do-i-reset-revert-a-specific-file-to-a-specific-revision-using-git11How do I reset/revert a specific file to a specific revision using Git?Hates_2008-10-18T23:34:02Z2009-05-27T17:52:22Z
<p>I have made some changes to a file which has been committed in a few times as part of a group of files, but now want to reset/revert the changes on it back to a previous version. </p>
<p>I have done a 'git log' along with a 'git diff' to find the revision I need, but just have no idea how to get the file back to it's former state in the past.</p>
<p>Any help is greatly appreciated.</p>
http://stackoverflow.com/questions/215718/how-do-i-reset-revert-a-specific-file-to-a-specific-revision-using-git/215731#21573112Answer by Greg Hewgill for How do I reset/revert a specific file to a specific revision using Git?Greg Hewgill2008-10-18T23:39:35Z2008-10-18T23:39:35Z<p>Assuming the commit you want is <code>abcde</code>:</p>
<pre><code>git checkout abcde file/to/restore
</code></pre>
<p>The <a href="http://www.kernel.org/pub/software/scm/git/docs/git-checkout.html" rel="nofollow">git checkout</a> man page gives more information.</p>
<p>As a side note, I've always been uncomfortable with this command because it's used for both ordinary things (changing between branches) and unusual destructive things (discarding changes in the working directory).</p>
http://stackoverflow.com/questions/215718/how-do-i-reset-revert-a-specific-file-to-a-specific-revision-using-git/215768#2157680Answer by Aristotle Pagaltzis for How do I reset/revert a specific file to a specific revision using Git?Aristotle Pagaltzis2008-10-19T00:16:01Z2008-10-19T00:16:01Z<p>I have to plug <a href="http://gitorious.org/projects/eg" rel="nofollow">EasyGit</a> here, which is a wrapper to make git more approachable to novices without confusing seasoned users. One of the things it does is <a href="http://www.gnome.org/~newren/eg/git-eg-differences.html#revert" rel="nofollow">give more meanings to <code>git revert</code></a>. In this case, you would say:</p>
<blockquote>
<p><code><a href="http://www.gnome.org/~newren/eg/documentation/revert.html" rel="nofollow">eg revert</a> --since <i>your_previous_commit</i> <b>foo/bar foo/baz</b></code></p>
</blockquote>
http://stackoverflow.com/questions/215718/how-do-i-reset-revert-a-specific-file-to-a-specific-revision-using-git/917126#9171263Answer by bbrown for How do I reset/revert a specific file to a specific revision using Git?bbrown2009-05-27T17:52:22Z2009-05-27T17:52:22Z<p>I had the same issue just now and I found <a href="http://stackoverflow.com/questions/725749/how-would-you-go-about-reverting-a-single-file-to-previous-commit-state-using-git/727725#727725">this answer</a> easiest to understand (<code>commit-ref</code> is the SHA value of the change in the log you want to go back to):</p>
<pre><code>git checkout [commit-ref] [filename]
</code></pre>
<p>This will put that old version in your working directory and from there you can commit it if you want.</p>