examining history of deleted file - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T20:31:40Z http://stackoverflow.com/feeds/question/401331 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/401331/examining-history-of-deleted-file 11 examining history of deleted file Benjamin Peterson 2008-12-30T20:05:29Z 2009-02-13T21:18:29Z <p>If I delete a file in Subversion, how can I look at it's history and contents? If I try to do <code>svn cat</code> or <code>svn log</code> on a nonexistent file, it complains that the file doesn't exist.</p> <p>Also, if I wanted to resurrect the file, should I just <code>svn add</code> it back?</p> <p>(I asked specifically about Subversion, but I'd also like to hear about how Bazaar, Mercurial, and Git handle this case, too.)</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/401344#401344 2 Answer by Jack M. for examining history of deleted file Jack M. 2008-12-30T20:09:15Z 2008-12-30T20:09:15Z <p>You would need to specify a revision.</p> <pre><code>svn log -r &lt;revision&gt; &lt;deleted file&gt; </code></pre> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/401353#401353 7 Answer by Stefan for examining history of deleted file Stefan 2008-12-30T20:13:24Z 2008-12-30T20:13:24Z <p>To get the log of a deleted file, use</p> <pre><code>svn log -r lastrevisionthefileexisted </code></pre> <p>If you want to resurrect the file and keep its version history, use</p> <pre><code>svn copy url/of/file -r lastrevisionthefileexisted path/to/workingcopy/file </code></pre> <p>If you just want the file content but unversioned (e.g., for a quick inspection), use</p> <pre><code>svn cat url/of/file -r latrevisionthefileexisted &gt; file </code></pre> <p>In any case, DO NOT use 'svn up' to get a deleted file back!</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/401370#401370 1 Answer by mjy for examining history of deleted file mjy 2008-12-30T20:17:39Z 2008-12-30T20:17:39Z <p>First, find the revision number where the file got deleted:</p> <pre><code>svn log -v &gt; log.txt </code></pre> <p>Then look in log.txt (not an SVN guru, so I don't know a better way) for a line with </p> <pre><code>D &lt;deleted file&gt; </code></pre> <p>and see which revision that was. Then, as in the other answers, resurrect the file using the previous revision.</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/401479#401479 6 Answer by Dustin for examining history of deleted file Dustin 2008-12-30T20:56:32Z 2008-12-30T20:56:32Z <p>It's nothing particularly special in git. If you know the name of the file, you can find out the change that removed it with log:</p> <pre><code>git log -n 1 -- filename </code></pre> <p>Then you can use that commit to get the file as it existed before the deletion.</p> <pre><code>git checkout [last_revision]^ filename </code></pre> <h3>Example:</h3> <pre><code>dhcp-120:/tmp/slosh 587% ls -l slosh.tac ls: slosh.tac: No such file or directory dhcp-120:/tmp/slosh 588% git log -n 1 -- slosh.tac commit 8d4a1f1a94e4aa37c1cb9d329a140d08eec1b587 Author: Dustin Sallings &lt;dustin@spy.net&gt; Date: Mon Dec 15 11:25:00 2008 -0800 Get rid of a .conf and replace it with .tac. dhcp-120:/tmp/slosh 589% git checkout 8d4a1f^ slosh.tac dhcp-120:/tmp/slosh 590% ll slosh.tac -rw------- 1 dustin wheel 822 Dec 30 12:52 slosh.tac </code></pre> <p>Note that this does not actually put the file back in revision control. It simply drops the file as it existed in its final state into the current location. You can then add it or just inspect it or whatever from that point.</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/401699#401699 4 Answer by Pieter for examining history of deleted file Pieter 2008-12-30T22:22:22Z 2008-12-30T22:22:22Z <p>In addition to Dustin's answer, if you just want to examine the contents, and not check it out, in his example you can do:</p> <pre><code>$ git show 8d4a1f^:slosh.tac </code></pre> <p>the : separates a revision and a path in that revision, effectively asking for a specific path at a specific revision.</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/542268#542268 0 Answer by PhiLho for examining history of deleted file PhiLho 2009-02-12T16:55:07Z 2009-02-12T16:55:07Z <p>Ah, since I am learning to use Bazaar, it is something I tried. Without success, it appears you cannot <a href="https://bugs.launchpad.net/bzr/+bug/255687" rel="nofollow" title="log and annotate should work on removed files">log and annotate removed files</a> currently... :-(</p> <p>Tried:</p> <pre><code>&gt; bzr log -r 3 Stuff/ErrorParser.hta bzr: ERROR: Path does not have any revision history: Stuff/ErrorParser.hta </code></pre> <p>but curiously (and fortuntely) I can do:</p> <pre><code>&gt; bzr cat -r 3 Stuff/ErrorParser.hta </code></pre> <p>and:</p> <pre><code>&gt; bzr diff -r 2..3 Stuff/ErrorParser.hta </code></pre> <p>and as suggested in the bug above:</p> <pre><code>&gt; bzr log -v | grep -B 1 ErrorParser </code></pre> <p>(adjust B parameter as needed).</p> http://stackoverflow.com/questions/401331/examining-history-of-deleted-file/547734#547734 1 Answer by Bert Huijben for examining history of deleted file Bert Huijben 2009-02-13T21:18:29Z 2009-02-13T21:18:29Z <p>When you want to look at old files you really should know the difference between:</p> <pre><code>svn cat http://server/svn/project/file -r 1234 </code></pre> <p>and</p> <pre><code>svn cat http://server/svn/project/file@1234 </code></pre> <p>The first version looks at the path that is <strong>now</strong> available as <a href="http://server/svn/project/file" rel="nofollow">http://server/svn/project/file</a> and retrieves that file as it was in revision 1234. (So this syntax does <strong>not</strong> work after a file delete).</p> <p>The second syntax gets the file that was available as <a href="http://server/svn/project/file" rel="nofollow">http://server/svn/project/file</a> in revision 1234. So this syntax <strong>DOES</strong> work on deleted files.</p> <p>You can even combine these methods to retrieve a file that was available in revision 2345 as <a href="http://server/svn/project/file" rel="nofollow">http://server/svn/project/file</a> but with the contents as it had in 1234 with:</p> <pre><code>svn cat http://server/svn/project/file@2345 -r 1234 </code></pre>