<?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>Denie&#039;s Tech Blog &#187; SVN</title>
	<atom:link href="http://blog.nataprawira.com/tech/category/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.nataprawira.com/tech</link>
	<description>Information Technology for Life!</description>
	<lastBuildDate>Mon, 19 Jul 2010 09:20:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Create SVN Repository</title>
		<link>http://blog.nataprawira.com/tech/2009/06/30/how-to-create-svn-repository/</link>
		<comments>http://blog.nataprawira.com/tech/2009/06/30/how-to-create-svn-repository/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 11:52:42 +0000</pubDate>
		<dc:creator>Denie</dc:creator>
				<category><![CDATA[BASH]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Repository]]></category>

		<guid isPermaLink="false">http://blog.nataprawira.com/tech/?p=58</guid>
		<description><![CDATA[

How to get help with svn?
If you are looking for svn reference in man pages, you have gone to the wrong place. To check the references of svn commands, simple do this:
svn help

This will make svn list all the available functions, to get the function reference, let say checkout
svn help checkout
The same thing goes to [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblog.nataprawira.com%2Ftech%2F2009%2F06%2F30%2Fhow-to-create-svn-repository%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblog.nataprawira.com%2Ftech%2F2009%2F06%2F30%2Fhow-to-create-svn-repository%2F" height="61" width="51" /></a></div>
<!-- ALL ADSENSE ADS DISABLED -->
<p><strong>How to get help with svn?</strong></p>
<p>If you are looking for svn reference in man pages, you have gone to the wrong place. To check the references of svn commands, simple do this:</p>
<p style="padding-left: 30px"><strong>svn help</strong></p>
<p><span id="more-58"></span></p>
<p>This will make svn list all the available functions, to get the function reference, let say checkout</p>
<p style="padding-left: 30px"><strong>svn help checkout</strong></p>
<p>The same thing goes to other svn related commands, such as svnadmin<strong></strong></p>
<p style="padding-left: 30px"><strong>svnadmin help</strong><strong></strong></p>
<p><strong>How to create a svn repository?</strong></p>
<p>First of all what is repository? It is a core file for svn, or you can call it a centralized svn backup database. After created it, it is just a directory with its files. IMPORTANT! Do NOT try to modify or add something into the repository, unless you know what are you doing.</p>
<p>To create a svn repo, let say I wanna create a repo to store all my programming codes, I do this<strong></strong></p>
<p style="padding-left: 30px"><strong>svnadmin create /home/mysurface/repo/programming_repo</strong></p>
<p>Remember try to use absolute path for everything, sometimes the relative path is not going to work.</p>
<p><strong>How to import my existing directories into the new repo?</strong><strong></strong></p>
<p style="padding-left: 30px"><strong>svn import /home/mysurface/programming file:///home/mysurface/repo/programming_repo -m &#8220;Initial import&#8221;</strong></p>
<p>-m stand for log message, the first revision was created with log as “Initial import”. You need to specified URL for the repo, URL is the standard argument for svn. Therefore for local file, you need to specified with file://</p>
<p><strong>How to see what is inside the repo?</strong></p>
<p style="padding-left: 30px"><strong>svn list file:///home/mysurface/repo/programming_repo</strong></p>
<p>Another way of listing all the files and folder in the tree view, I use svnlook</p>
<p style="padding-left: 30px"><strong>svnlook tree programming_repo </strong></p>
<p>The difference between svn list and svnlook tree is one expect URL another one do not.</p>
<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://blog.nataprawira.com/tech/2009/06/30/how-to-create-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
