<?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>Alexandre Martins &#187; SVN</title>
	<atom:link href="http://blog.m.artins.net/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.m.artins.net</link>
	<description>On Agile Software Development</description>
	<lastBuildDate>Thu, 12 Aug 2010 20:09:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Subversion command reference</title>
		<link>http://blog.m.artins.net/subversion-command-reference/</link>
		<comments>http://blog.m.artins.net/subversion-command-reference/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 18:58:54 +0000</pubDate>
		<dc:creator>Alexandre Martins</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Reference]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://blog.m.artins.net/?p=21</guid>
		<description><![CDATA[This post is more to keep in a single place reference to useful subversion commands, for future development. Anyone who has a command can comment this post, so I can add it here. List all your local files that hasn't been added to the repository yet. vn st &#124; grep ? Add all your local [...]]]></description>
			<content:encoded><![CDATA[<p>This post is more to keep in a single place reference to useful subversion commands, for future development.<br />
Anyone who has a command can comment this post, so I can add it here.</p>
<p>List all your local files that hasn't been added to the repository yet.</p>
<pre>vn st | grep ?</pre>
<p>Add all your local files that hasn't been added to the repository yet.</p>
<pre>svn st | grep ? | cut -b7- | xargs svn add</pre>
<p>or</p>
<pre>svn add . –force</pre>
<p>Send HTML formatted email messages for Subversion activity (see <a href="http://search.cpan.org/dist/SVN-Notify/">SVN-Notify</a> website)</p>
<pre>
svnnotify -d -H HTML::ColorDiff --smtp myhost.com
--repos-path "$1" --revision "$2" -t dev1@myhost.com -t dev2@myhost.com
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.m.artins.net/subversion-command-reference/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
