<?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>Linux Ask! &#187; CVS</title>
	<atom:link href="http://www.linuxask.com/topics/revision-control-systems/cvs-revision-control-systems/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxask.com</link>
	<description>Linux Ask! is a Q &#38; A web site specific for Linux related questions such as how to use common Linux commands.</description>
	<lastBuildDate>Tue, 05 May 2015 07:15:40 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>Update the local CVS repository</title>
		<link>http://www.linuxask.com/questions/update-the-local-cvs-repository</link>
		<comments>http://www.linuxask.com/questions/update-the-local-cvs-repository#comments</comments>
		<pubDate>Mon, 04 Oct 2010 09:00:04 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Advanced Linux]]></category>
		<category><![CDATA[CVS]]></category>
		<category><![CDATA[cvs]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1926</guid>
		<description><![CDATA[Update the local CVS repository Answer: To update the local working CVS repository, you can use the command: # cvs update -P The -P flag is useful as it prune empty directories.<div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/import-files-and-directories-into-a-svn-repository" rel="bookmark" title="Import files and directories into a SVN repository">Import files and directories into a SVN repository </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-svn-repository-on-local-drive" rel="bookmark" title="Create a SVN Repository on local drive">Create a SVN Repository on local drive </a></li>
<li><a href="http://www.linuxask.com/questions/yum-repository-mirror-for-old-centos-versions" rel="bookmark" title="Yum repository mirror for old CentOS&#8217; versions">Yum repository mirror for old CentOS&#8217; versions </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Update the local CVS repository</p>
<p><strong>Answer:</strong></p>
<p>To update the local working <strong>CVS </strong>repository, you can use the command:</p>
<p><code># cvs update -P</code></p>
<p>The <strong>-P</strong> flag is useful as it prune empty directories.</p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/import-files-and-directories-into-a-svn-repository" rel="bookmark" title="Import files and directories into a SVN repository">Import files and directories into a SVN repository </a></li>
<li><a href="http://www.linuxask.com/questions/create-a-svn-repository-on-local-drive" rel="bookmark" title="Create a SVN Repository on local drive">Create a SVN Repository on local drive </a></li>
<li><a href="http://www.linuxask.com/questions/yum-repository-mirror-for-old-centos-versions" rel="bookmark" title="Yum repository mirror for old CentOS&#8217; versions">Yum repository mirror for old CentOS&#8217; versions </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/update-the-local-cvs-repository/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to ignore dummy files (e.g. from CVS, SVN) during rsync?</title>
		<link>http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync</link>
		<comments>http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:46:05 +0000</pubDate>
		<dc:creator><![CDATA[Linux Ask!]]></dc:creator>
				<category><![CDATA[Commands]]></category>
		<category><![CDATA[CVS]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.linuxask.com/?p=1702</guid>
		<description><![CDATA[How to ignore dummy files (e.g. from CVS, SVN) during rsync? Answer: During rsync, you might want to ignore a lot of dummy files, e.g. .bak, .svn, .old files, you can use the following flag as part of your rsync command. # rsync --cvs-exclude ... List of files skipped (rsync 3.06): RCS SCCS CVS CVS.adm <a href='http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync' class='excerpt-more'>[...]</a><div class='yarpp-related-rss'>

Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-copy-symbolic-links-as-real-files-when-using-rsync" rel="bookmark" title="How to copy symbolic links as real files when using rsync">How to copy symbolic links as real files when using rsync </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-blank-lines-when-creating-the-diff-of-two-files" rel="bookmark" title="How to ignore blank lines when creating the diff of two files">How to ignore blank lines when creating the diff of two files </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>How to ignore dummy files (e.g. from CVS, SVN) during rsync?</p>
<p><strong>Answer:</strong></p>
<p>During <strong>rsync</strong>, you might want to ignore a lot of dummy files, e.g. <strong>.bak, .svn, .old</strong> files, you can use the following flag as part of your <strong>rsync </strong> command.</p>
<p><code>#  rsync --cvs-exclude ...  </code></p>
<p>List of files skipped (rsync 3.06):</p>
<p><code>RCS  SCCS CVS CVS.adm RCSLOG cvslog.* tags TAGS .make.state .nse_depinfo *~ #* .#* ,* _$* *$ *.old *.bak *.BAK *.orig *.rej .del-* *.a *.olb *.o *.obj *.so *.exe *.Z *.elc *.ln core .svn/ .git/ .bzr/<br />
</code></p>
<div class='yarpp-related-rss'>
<p>Related posts:<ol>
<li><a href="http://www.linuxask.com/questions/how-to-copy-symbolic-links-as-real-files-when-using-rsync" rel="bookmark" title="How to copy symbolic links as real files when using rsync">How to copy symbolic links as real files when using rsync </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-ignore-blank-lines-when-creating-the-diff-of-two-files" rel="bookmark" title="How to ignore blank lines when creating the diff of two files">How to ignore blank lines when creating the diff of two files </a></li>
<li><a href="http://www.linuxask.com/questions/how-to-remove-all-orig-files-created-by-mercurial" rel="bookmark" title="How to remove all .orig files created by Mercurial">How to remove all .orig files created by Mercurial </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.linuxask.com/questions/how-to-ignore-dummy-files-e-g-from-cvs-svn-during-rsync/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
