<?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>VV&#039;s Corner &#187; svn</title>
	<atom:link href="http://vinoaj.com/blog/category/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://vinoaj.com/blog</link>
	<description>my collection of random thoughts, how-to&#039;s and code snippets</description>
	<lastBuildDate>Sat, 04 Dec 2010 15:05:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>svn &#8211; Ignore/exclude files from version control</title>
		<link>http://vinoaj.com/blog/2007/07/svn-ignoreexclude-files-from-version-control/</link>
		<comments>http://vinoaj.com/blog/2007/07/svn-ignoreexclude-files-from-version-control/#comments</comments>
		<pubDate>Thu, 05 Jul 2007 10:34:13 +0000</pubDate>
		<dc:creator>vinoaj</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://vinoaj.com/blog/howtos/svn-ignoreexclude-files-from-version-control/</guid>
		<description><![CDATA[In most projects there are going to be files that you wish to ignore in version control. These could be temporary files, log or debug files, and so forth. These are files that you can safely ignore when executing commands such as svn commit and svn st. The following shows how to configure your svn [...]]]></description>
			<content:encoded><![CDATA[<p>In most projects there are going to be files that you wish to ignore in version control.  These could be temporary files, log or debug files, and so forth.  These are files that you can safely ignore when executing commands such as <code>svn commit</code> and <code>svn st</code>.  The following shows how to configure your svn client to ignore particular files in your working copy.</p>
<pre>svn propedit svn:ignore /path/with/files/to/ignore/</pre>
<p>svn opens up your text editor of choice</p>
<p>Use file patterns to indicate which files to ignore from version control. Each pattern goes on a new line. e.g.</p>
<pre>
log_12*.log
*.tmp</pre>
<p>Save your file and exit</p>
<p>Now whenever you perform commands like <code>svn st</code> or <code>svn commit</code>, svn will ignore files with the patterns you specified in the directories that you specified.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://vinoaj.com/blog/2007/07/svn-ignoreexclude-files-from-version-control/&via=vinoaj&text=svn - Ignore/exclude files from version control&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://vinoaj.com/blog/2007/07/svn-ignoreexclude-files-from-version-control/&via=vinoaj&text=svn - Ignore/exclude files from version control&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://vinoaj.com/blog/2007/07/svn-ignoreexclude-files-from-version-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

