<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
	>
<channel>
	<title>Comments on: How to revert (roll back) to a previous revision with Subversion</title>
	<atom:link href="http://aralbalkan.com/1381/feed" rel="self" type="application/rss+xml" />
	<link>http://aralbalkan.com/1381</link>
	<description>Passionate geekisms.</description>
	<lastBuildDate>Tue, 22 May 2012 18:33:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Vibhor</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265695</link>
		<dc:creator>Vibhor</dc:creator>
		<pubDate>Mon, 05 Mar 2012 09:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265695</guid>
		<description>SVN sucks GIT rules.
I was &quot;forced&quot; to use SVN for my current project and I&#039;ve been wasting hours trying to make things like this work rather than working.</description>
		<content:encoded><![CDATA[<p>SVN sucks GIT rules.<br />
I was &#8220;forced&#8221; to use SVN for my current project and I&#8217;ve been wasting hours trying to make things like this work rather than working.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265683</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 01 Mar 2012 00:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265683</guid>
		<description>Though this is extremely old, I found the command 

svn update -r 68

to be more to my liking.  Hope this helps someone!</description>
		<content:encoded><![CDATA[<p>Though this is extremely old, I found the command </p>
<p>svn update -r 68</p>
<p>to be more to my liking.  Hope this helps someone!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265681</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Wed, 29 Feb 2012 16:42:52 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265681</guid>
		<description>While this is the first Google result if I want to revert something, it still has a minor error, so that this does not work.

The correct syntax for svn revisions is not -r:123:456 but -r 123:456

Else, thanks for the solution. It&#039;s easier to Google this once a year when you need it than to memorize it :-)</description>
		<content:encoded><![CDATA[<p>While this is the first Google result if I want to revert something, it still has a minor error, so that this does not work.</p>
<p>The correct syntax for svn revisions is not -r:123:456 but -r 123:456</p>
<p>Else, thanks for the solution. It&#8217;s easier to Google this once a year when you need it than to memorize it :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauritz Hansen</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265672</link>
		<dc:creator>Mauritz Hansen</dc:creator>
		<pubDate>Fri, 24 Feb 2012 11:46:35 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265672</guid>
		<description>Great info, well written. Thanks!</description>
		<content:encoded><![CDATA[<p>Great info, well written. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammad Khashashneh</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265667</link>
		<dc:creator>Mohammad Khashashneh</dc:creator>
		<pubDate>Wed, 22 Feb 2012 16:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265667</guid>
		<description>Thanks, made my day!</description>
		<content:encoded><![CDATA[<p>Thanks, made my day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven J. Garner</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265659</link>
		<dc:creator>Steven J. Garner</dc:creator>
		<pubDate>Sat, 18 Feb 2012 00:36:42 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265659</guid>
		<description>If you get a:

svn: Syntax error in revision argument &#039;:73:68&#039;

... with the above -r:73:68 statements, then try -r 73:68 instead of -r:73:68 

Another useful command in dealing with revisions is to be able to checkout a specific revision number (e.g.68):

svn co --username [username] --password [password] svn://my.repository.com/my/project/trunk@68

... or ...

svn co -r 68 --username [username] --password [password] svn://my.repository.com/my/project/trunk</description>
		<content:encoded><![CDATA[<p>If you get a:</p>
<p>svn: Syntax error in revision argument &#8216;:73:68&#8242;</p>
<p>&#8230; with the above -r:73:68 statements, then try -r 73:68 instead of -r:73:68 </p>
<p>Another useful command in dealing with revisions is to be able to checkout a specific revision number (e.g.68):</p>
<p>svn co &#8211;username [username] &#8211;password [password] <a href="svn://my.repository.com/my/project/trunk@68" rel="nofollow">svn://my.repository.com/my/project/trunk@68</a></p>
<p>&#8230; or &#8230;</p>
<p>svn co -r 68 &#8211;username [username] &#8211;password [password] <a href="svn://my.repository.com/my/project/trunk" rel="nofollow">svn://my.repository.com/my/project/trunk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitch Robertson</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265572</link>
		<dc:creator>Mitch Robertson</dc:creator>
		<pubDate>Wed, 01 Feb 2012 00:57:24 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265572</guid>
		<description>Error in your code:

svn merge --dry-run -r:73:68 

should be

svn merge --dry-run -r73:68</description>
		<content:encoded><![CDATA[<p>Error in your code:</p>
<p>svn merge &#8211;dry-run -r:73:68 </p>
<p>should be</p>
<p>svn merge &#8211;dry-run -r73:68</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: illo</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265539</link>
		<dc:creator>illo</dc:creator>
		<pubDate>Wed, 25 Jan 2012 18:38:08 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265539</guid>
		<description>Thanks for this hint :)

I know this post is a few years old, but there is still one thing to correct: There has to be a space after &quot;-r&quot;.
So it would be &quot;svn merge -r 73:68...&quot;</description>
		<content:encoded><![CDATA[<p>Thanks for this hint :)</p>
<p>I know this post is a few years old, but there is still one thing to correct: There has to be a space after &#8220;-r&#8221;.<br />
So it would be &#8220;svn merge -r 73:68&#8230;&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265525</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265525</guid>
		<description>i think you have a syntax error.

the -r flag shouldn&#039;t have a &#039;:&#039; right after it.
i think it should be -r 73:68</description>
		<content:encoded><![CDATA[<p>i think you have a syntax error.</p>
<p>the -r flag shouldn&#8217;t have a &#8216;:&#8217; right after it.<br />
i think it should be -r 73:68</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oyvind</title>
		<link>http://aralbalkan.com/1381/comment-page-4#comment-265511</link>
		<dc:creator>Oyvind</dc:creator>
		<pubDate>Fri, 20 Jan 2012 07:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://aralbalkan.com/1381#comment-265511</guid>
		<description>If I had not found this I would have ended up trying all kinds of functions in SVN before even considering to use merge in reverse. 

Thank you for the precise and to the point blog post.</description>
		<content:encoded><![CDATA[<p>If I had not found this I would have ended up trying all kinds of functions in SVN before even considering to use merge in reverse. </p>
<p>Thank you for the precise and to the point blog post.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

