<?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"
	>
<channel>
	<title>Comments on: Dump a SVN repository from a URL</title>
	<atom:link href="http://www.pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/feed/" rel="self" type="application/rss+xml" />
	<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 04 Feb 2012 06:03:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>By: Clay Bridges</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-16527</link>
		<dc:creator>Clay Bridges</dc:creator>
		<pubDate>Mon, 02 Jan 2012 22:46:48 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-16527</guid>
		<description>This is now built-in to svn 1.7: svnrdump.</description>
		<content:encoded><![CDATA[<p>This is now built-in to svn 1.7: svnrdump.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Olstad</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-14455</link>
		<dc:creator>Joseph Olstad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 15:43:39 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-14455</guid>
		<description>Sorry for the previous errors
Please ignore my previous comments:

Made slight correction to this script however when coping and pasting this script pay attention to the single quotes that need to be adjusted around ‘#!/bin/sh’ , these ‘ quotes should have no curve. The blog text filters are changing them probably to avoid sql injection attacks but the script won’t work unless you have the right single quote around the line: echo ‘#!/bin/sh’

#!/bin/bash
#script for  GNU/Linux/nix inspired by this excellent article
cd /tmp
svn_repo_name=”test_repo”
source_url=”http://svn.example.org/example”

DATEC=”/bin/date”
DATE=”`${DATEC} +%Y-%m-%d_%Hh%Mm`”
echo “`${DATEC} +%Y-%m-%d_%Hh%Mm`”

echo “mkdir $svn_repo_name”
mkdir $svn_repo_name

echo “svnadmin create $svn_repo_name”
svnadmin create “$svn_repo_name”

echo “echo ‘#!/bin/sh’ &#62; ${svn_repo_name}/hooks/pre-revprop-change”
echo ‘#!/bin/sh’ &#62; “$svn_repo_name”/hooks/pre-revprop-change

echo “sudo chmod +x {$svn_repo_name}/hooks/pre-revprop-change”
sudo chmod +x “$svn_repo_name”/hooks/pre-revprop-change

echo “svnsync init file:////tmp/$svn_repo_name ${source_url}”
svnsync init file:////tmp/”$svn_repo_name” ${source_url}

echo “svnsync sync file:////tmp/$svn_repo_name”
svnsync sync file:////tmp/$svn_repo_name

echo “svnadmin dump $svn_repo_name &#62; {$svn_repo_name}_${DATE}”
svnadmin dump “$svn_repo_name” &#62; {$svn_repo_name}_${DATE}



see this link to finish the re-import
http://whynotwiki.com/Subversion_/_Dump_and_loading</description>
		<content:encoded><![CDATA[<p>Sorry for the previous errors<br />
Please ignore my previous comments:</p>
<p>Made slight correction to this script however when coping and pasting this script pay attention to the single quotes that need to be adjusted around ‘#!/bin/sh’ , these ‘ quotes should have no curve. The blog text filters are changing them probably to avoid sql injection attacks but the script won’t work unless you have the right single quote around the line: echo ‘#!/bin/sh’</p>
<p>#!/bin/bash<br />
#script for  GNU/Linux/nix inspired by this excellent article<br />
cd /tmp<br />
svn_repo_name=”test_repo”<br />
source_url=”http://svn.example.org/example”</p>
<p>DATEC=”/bin/date”<br />
DATE=”`${DATEC} +%Y-%m-%d_%Hh%Mm`”<br />
echo “`${DATEC} +%Y-%m-%d_%Hh%Mm`”</p>
<p>echo “mkdir $svn_repo_name”<br />
mkdir $svn_repo_name</p>
<p>echo “svnadmin create $svn_repo_name”<br />
svnadmin create “$svn_repo_name”</p>
<p>echo “echo ‘#!/bin/sh’ &gt; ${svn_repo_name}/hooks/pre-revprop-change”<br />
echo ‘#!/bin/sh’ &gt; “$svn_repo_name”/hooks/pre-revprop-change</p>
<p>echo “sudo chmod +x {$svn_repo_name}/hooks/pre-revprop-change”<br />
sudo chmod +x “$svn_repo_name”/hooks/pre-revprop-change</p>
<p>echo “svnsync init file:////tmp/$svn_repo_name ${source_url}”<br />
svnsync init file:////tmp/”$svn_repo_name” ${source_url}</p>
<p>echo “svnsync sync file:////tmp/$svn_repo_name”<br />
svnsync sync file:////tmp/$svn_repo_name</p>
<p>echo “svnadmin dump $svn_repo_name &gt; {$svn_repo_name}_${DATE}”<br />
svnadmin dump “$svn_repo_name” &gt; {$svn_repo_name}_${DATE}</p>
<p>see this link to finish the re-import<br />
<a href="http://whynotwiki.com/Subversion_/_Dump_and_loading" rel="nofollow">http://whynotwiki.com/Subversion_/_Dump_and_loading</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Olstad</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-14454</link>
		<dc:creator>Joseph Olstad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 15:34:59 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-14454</guid>
		<description>see this link to finish the re-import 
http://whynotwiki.com/Subversion_/_Dump_and_loading</description>
		<content:encoded><![CDATA[<p>see this link to finish the re-import<br />
<a href="http://whynotwiki.com/Subversion_/_Dump_and_loading" rel="nofollow">http://whynotwiki.com/Subversion_/_Dump_and_loading</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Olstad</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-14452</link>
		<dc:creator>Joseph Olstad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 15:21:58 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-14452</guid>
		<description>the single quotes that need modifying are '#!/bin/sh'  , these ' quotes should have no curve.  Not sure what character set this website is changing it to.</description>
		<content:encoded><![CDATA[<p>the single quotes that need modifying are &#8216;#!/bin/sh&#8217;  , these &#8216; quotes should have no curve.  Not sure what character set this website is changing it to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Olstad</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-14451</link>
		<dc:creator>Joseph Olstad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 15:20:10 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-14451</guid>
		<description>Can the moderator please edit my submission, the url should be svn.example.org , please correct my error</description>
		<content:encoded><![CDATA[<p>Can the moderator please edit my submission, the url should be svn.example.org , please correct my error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Olstad</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-14450</link>
		<dc:creator>Joseph Olstad</dc:creator>
		<pubDate>Mon, 19 Sep 2011 15:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-14450</guid>
		<description>Make sure to edit the single quotes, the html filter on this website changes a single quote to a special character single quote that is unrecognized by bash</description>
		<content:encoded><![CDATA[<p>Make sure to edit the single quotes, the html filter on this website changes a single quote to a special character single quote that is unrecognized by bash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jamjam</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-11753</link>
		<dc:creator>jamjam</dc:creator>
		<pubDate>Thu, 21 Apr 2011 07:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-11753</guid>
		<description>thanks, works for me!</description>
		<content:encoded><![CDATA[<p>thanks, works for me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allahbaksh Mohammedali Asadullah</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-9055</link>
		<dc:creator>Allahbaksh Mohammedali Asadullah</dc:creator>
		<pubDate>Fri, 03 Dec 2010 09:34:28 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-9055</guid>
		<description>This is very good article. The only thing which I would like to know is I want to create dump of only particular project from the link. For example http://svn.apache.org/repos/asf/lucene/dev/trunk is Lucene Project in http://svn.apache.org/repos. 
I just want a dump  a project? Can we dump only a project or should I checkout the project and again upload it in different repo?</description>
		<content:encoded><![CDATA[<p>This is very good article. The only thing which I would like to know is I want to create dump of only particular project from the link. For example <a href="http://svn.apache.org/repos/asf/lucene/dev/trunk" rel="nofollow">http://svn.apache.org/repos/asf/lucene/dev/trunk</a> is Lucene Project in <a href="http://svn.apache.org/repos" rel="nofollow">http://svn.apache.org/repos</a>.<br />
I just want a dump  a project? Can we dump only a project or should I checkout the project and again upload it in different repo?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Red Beard</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-7644</link>
		<dc:creator>Red Beard</dc:creator>
		<pubDate>Tue, 20 Jul 2010 18:51:17 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-7644</guid>
		<description>Awesome. Great work! I really needed to pull down a repository off a 3rd party web site.</description>
		<content:encoded><![CDATA[<p>Awesome. Great work! I really needed to pull down a repository off a 3rd party web site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diogo</title>
		<link>http://pogopixels.com/blog/dumping-a-svn-repository-from-a-remote-url/#comment-6598</link>
		<dc:creator>Diogo</dc:creator>
		<pubDate>Tue, 27 Apr 2010 08:20:33 +0000</pubDate>
		<guid isPermaLink="false">http://pogopixels.com/blog/?p=27#comment-6598</guid>
		<description>Really helpful! thanks man :D</description>
		<content:encoded><![CDATA[<p>Really helpful! thanks man <img src='http://pogopixels.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>

