<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Recover a deleted file in Subversion</title>
	<atom:link href="http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/</link>
	<description>Addressing such topics as: web programming, design, ruby on rails, cake php, postgresql, linux, seo</description>
	<lastBuildDate>Tue, 03 Aug 2010 18:45:16 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shiv</title>
		<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/comment-page-1/#comment-594</link>
		<dc:creator>Shiv</dc:creator>
		<pubDate>Sat, 20 Feb 2010 02:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/#comment-594</guid>
		<description>Do you happen to know if there&#039;s a difference between doing it the way you proposed versus using TortoiseSVN right-click feature as mentioned here? 

http://tortoisesvn.net/most-forgotten-feature

I tried the TSVN way, and it seemed to work for me. That is, all of the log history is still retained.</description>
		<content:encoded><![CDATA[<p>Do you happen to know if there&#8217;s a difference between doing it the way you proposed versus using TortoiseSVN right-click feature as mentioned here? </p>
<p><a href="http://tortoisesvn.net/most-forgotten-feature" rel="nofollow">http://tortoisesvn.net/most-forgotten-feature</a></p>
<p>I tried the TSVN way, and it seemed to work for me. That is, all of the log history is still retained.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/comment-page-1/#comment-589</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 14 Jan 2010 22:01:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/#comment-589</guid>
		<description>Sorry, but that last post got scrambled; blame it on careless use of angle brackets.
Hopefully, this version of the command will come through unscathed:
 
svn copy  -rrevision_number_where_deleted  http://svn_machine_name/svn_repository_path/README .</description>
		<content:encoded><![CDATA[<p>Sorry, but that last post got scrambled; blame it on careless use of angle brackets.<br />
Hopefully, this version of the command will come through unscathed:</p>
<p>svn copy  -rrevision_number_where_deleted  <a href="http://svn_machine_name/svn_repository_path/README" rel="nofollow">http://svn_machine_name/svn_repository_path/README</a> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/comment-page-1/#comment-588</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Thu, 14 Jan 2010 21:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/#comment-588</guid>
		<description>I was not able to use the @revision syntax, but -r worked just fine.  

The following command restored a deleted README file (with log entries back to 1993!) in my current working directory:

svn copy -r  http:////README .

-- Thanks for the help!</description>
		<content:encoded><![CDATA[<p>I was not able to use the @revision syntax, but -r worked just fine.  </p>
<p>The following command restored a deleted README file (with log entries back to 1993!) in my current working directory:</p>
<p>svn copy -r  <a href="http:////README" rel="nofollow">http:////README</a> .</p>
<p>&#8211; Thanks for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clifton</title>
		<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/comment-page-1/#comment-580</link>
		<dc:creator>Clifton</dc:creator>
		<pubDate>Fri, 13 Nov 2009 05:26:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/#comment-580</guid>
		<description>Your forgot a hyphen in the svn log command:

svn log --verbose

Thanks!</description>
		<content:encoded><![CDATA[<p>Your forgot a hyphen in the svn log command:</p>
<p>svn log &#8211;verbose</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tarun</title>
		<link>http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/comment-page-1/#comment-485</link>
		<dc:creator>Tarun</dc:creator>
		<pubDate>Fri, 01 May 2009 19:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.mokisystems.com/blog/recover-a-deleted-file-in-subversion/#comment-485</guid>
		<description>If you are giving the repository url, the -r or --revision parameter doesnt work.

instead specify the old revision by appending @revision-number to end of the old file url.

svn copy svn://repo-path/file-path@old-revision-number relative-path-to-new-location

example -

cd working-copy/mydir
svn copy svn://www.example.com/myproject/mydir/myfile@21 .

will copy the the file &#039;myfile&#039; from revision 21 into the current directory.</description>
		<content:encoded><![CDATA[<p>If you are giving the repository url, the -r or &#8211;revision parameter doesnt work.</p>
<p>instead specify the old revision by appending @revision-number to end of the old file url.</p>
<p>svn copy svn://repo-path/file-path@old-revision-number relative-path-to-new-location</p>
<p>example -</p>
<p>cd working-copy/mydir<br />
svn copy svn://www.example.com/myproject/mydir/myfile@21 .</p>
<p>will copy the the file &#8216;myfile&#8217; from revision 21 into the current directory.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
