<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Alex Amiryan's Linux Blog &#187; svn</title>
	<atom:link href="http://www.amiryan.org/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.amiryan.org</link>
	<description>Just sharing my experiance in linux</description>
	<lastBuildDate>Tue, 10 Nov 2009 19:56:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Howto delete all .svn folders from SVN working directory</title>
		<link>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/</link>
		<comments>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:53:14 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=233</guid>
		<description><![CDATA[To delete all .svn folders from SVN working directory for releasing folder from SVN just do this simple steps. Create new file in /usr/local/bin with name svnrm with following content #!&#47;bin&#47;sh find . -name .svn -print0 &#124; xargs -0 rm -rf Save it. From now on you can execute svnrm command in your working directory [...]]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>To delete all <em><strong>.svn</strong></em> folders from SVN working directory for releasing folder from SVN just do this simple steps.<br />
Create new file in <em>/usr/local/bin</em> with name <strong><em>svnrm</em></strong> with following content</p>
<pre class="brush: bash">#!&#47;bin&#47;sh
find . -name .svn -print0 | xargs -0 rm -rf</pre>
<p>Save it. From now on you can execute <strong><em>svnrm</em></strong> command in your working directory and it will delete all .svn folders at once.<br />
Have fun!</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/23/howto-delete-all-svn-folders-from-svn-working-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto recursively add unversioned files into SVN repository</title>
		<link>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/</link>
		<comments>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:29:02 +0000</pubDate>
		<dc:creator>Alex Amiryan</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[howtos]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.amiryan.org/?p=189</guid>
		<description><![CDATA[Because svn add command does not support recursive addition of unversioned files you can use this little script to do it. Create new file in /usr/local/bin with name svnadd with following content #!&#47;bin&#47;sh svn status &#124; perl -ne 's/^\?\s+(\S.+)$/\1/g;chomp;system("svn add \"$_\"");' Save it. From now on you can execute svnadd command in your working directory.]]></description>
			<content:encoded><![CDATA[<!--Amazon_CLS_IM_START--><p>Because <em>svn add</em> command does not support recursive addition of unversioned files you can use this little script to do it.<br />
Create new file in <em>/usr/local/bin</em> with name <strong><em>svnadd</em></strong> with following content</p>
<pre class="brush: bash">#!&#47;bin&#47;sh
svn status | perl -ne 's/^\?\s+(\S.+)$/\1/g;chomp;system("svn add \"$_\"");'</pre>
<p>Save it. From now on you can execute <strong><em>svnadd</em></strong> command in your working directory.</p>
<!--Amazon_CLS_IM_END-->]]></content:encoded>
			<wfw:commentRss>http://www.amiryan.org/2009/04/22/howto-recursively-add-unversioned-files-into-svn-repository/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
