<?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>Make Tech Easier&#187; version control</title>
	<atom:link href="http://maketecheasier.com/tag/version-control/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 25 May 2012 23:58:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Beginner&#8217;s Guide to Git</title>
		<link>http://maketecheasier.com/beginners-guide-to-git/2010/03/11</link>
		<comments>http://maketecheasier.com/beginners-guide-to-git/2010/03/11#comments</comments>
		<pubDate>Thu, 11 Mar 2010 13:00:46 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=13394</guid>
		<description><![CDATA[If you&#8217;re a Linux user, you&#8217;ve likely come across Git at some point, perhaps while trying to download a new program or looking into version control systems like CVS or Subversion. Git is the revision control system created by the Linux kernel&#8217;s famous Linus Torvalds due to a lack of... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11&amp;title=Beginner%26%238217%3Bs+Guide+to+Git&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/beginners-guide-to-git/2010/03/11">Beginner&#8217;s Guide to Git</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2010/03/git-logo.png" alt="git-logo" title="git-logo" width="136" height="160" class="alignleft size-full wp-image-13395" />If you&#8217;re a Linux user, you&#8217;ve likely come across <a href="http://git-scm.com/" target="_blank">Git</a> at some point, perhaps while trying to download a new program or looking into version control systems like CVS or Subversion. Git is the revision control system created by the Linux kernel&#8217;s famous Linus Torvalds due to a lack of satisfaction with existing solutions. The main emphasis in the design was on speed, or more specifically, efficiency. Git addresses many of the shortcomings of previous systems, and does it all in a lot less time.<br />
<span id="more-13394"></span></p>
<h3>What Git Does</h3>
<p> Let&#8217;s say you are working on creating a website for a customer. They state what they want, you design it, they review it and make revisions, rinse, repeat. With each set of revisions from the customer, the site changes and grows. Later, the customer may say &#8220;I like it better the way it looked last September&#8221;. Under normal circumstances, you&#8217;ve got a problem. You may not have all the files and data from that time, and your code may have changed so much that reverting back would be difficult or impossible.  </p>
<p>The point of a revision control system is to solve nearly all the problems in the above paragraph. You can track each change to your code and files, and revert at any point back to where things were.  </p>
<h3>How Git Works</h3>
<p>Each project&#8217;s directory is its own Git repository. You keep all your files for that project in that directory, and periodically tell Git to update its information with the current state of the files. That process of telling Git to record the state is a <em>commit</em>. Each time you commit (which should be often) Git takes a look at all files that it&#8217;s been instructed to track, and saves the differences in those files (not all new files) to the .git directory. Each commit becomes a new save point for the development of your project.  </p>
<p>Optionally, you can push your local git repository to an outside host, such as <em>GitHub.com</em>. This allows multiple contributors on a project to be able to make frequent, fast commits to their local repo, then bundle all those local commits into a single update to the online repository. This is one of the things that makes Git faster to use than some other VCS systems: you can commit frequently to your local repository without wasting time and bandwidth having to upload to a server every for each one.  </p>
<h3>Getting Git</h3>
<p>Most Linux users should have Git (or <em>git-core</em>) available in their distro&#8217;s standard repositories.  Ubuntu users can install it by clicking <a href="apt://git-core">here</a>, or in the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> git-core</pre></div></div>

<p>If you&#8217;re on another platform, or otherwise cannot use such repositories, you can download and manually install packages <a href="http://git-scm.com/download" target="_blank">here</a>. Our examples are intended for Linux, but should be identical for all platforms supported by Git.  </p>
<h3>Using Git</h3>
<p>The process of creating a local Git repository is quick and easy. Create a directory that you intend to use for your project and open your terminal to that location. At the command line, enter the command</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">git</span> init</pre></div></div>

<p>This will create the .git directory to hold your repository information. Likely, you&#8217;ll want to start adding some files. We&#8217;ll start by creating a sample README file, adding it to the repository&#8217;s list of files to watch, then committing our file to the repository.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Insert some text into a new file</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;TODO: Create documentation&quot;</span> <span style="color: #000000; font-weight: bold;">&gt;</span> README.txt
&nbsp;
<span style="color: #666666; font-style: italic;">#Now tell Git to keep track of this file's changes</span>
<span style="color: #666666; font-style: italic;">#This only needs to be done once per file (more</span>
<span style="color: #666666; font-style: italic;">#on that in a moment)</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> add README.txt
&nbsp;
<span style="color: #666666; font-style: italic;">#And now save state to Git repository</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> commit README.txt</pre></div></div>

<p>You&#8217;ll be brought to a text editor screen (exactly which text editor depends on your distro and configuration) where you should enter any notes about this commit. These are usually brief summaries of the changes that occurred since the last commit. Once you save and exit the text editor the commit should be successfully completed.  </p>
<p>We&#8217;ve essentially created a snapshot of that file&#8217;s current state. Any further changes (that you commit) will be saved on top of that.  </p>
<p>Adding and committing each file individually like in the example above can get tedious. To remedy that, you can instead add all files in the current directory with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Note the trailing &quot;.&quot;</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> add .</pre></div></div>

<p>and you can commit all known, changed files at once with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">git</span> commit <span style="color: #660033;">-a</span></pre></div></div>

<p>Some other handy <em>git</em> command options include:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#Make a full clone of existing repository, such as from the website of a software project</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> clone <span style="color: #7a0874; font-weight: bold;">&#40;</span>URL, ie <span style="color: #c20cb9; font-weight: bold;">git</span>:<span style="color: #000000; font-weight: bold;">//</span>github.com<span style="color: #000000; font-weight: bold;">/</span>github<span style="color: #000000; font-weight: bold;">/</span>linux-<span style="color: #000000;">2.6</span>.git<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Move/rename a file.  This spares you from having to remove and re-add the file </span>
<span style="color: #666666; font-style: italic;">#if it had been moved by bash</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">source</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>destination<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Delete a file and remove from Git repo</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>target<span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#See branches in this repository</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> branch
&nbsp;
<span style="color: #666666; font-style: italic;">#Create a new branch of the Git tree</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> branch <span style="color: #7a0874; font-weight: bold;">&#40;</span>new branch name, ie <span style="color: #ff0000;">&quot;experimental&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Switch from one branch to another</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> checkout <span style="color: #7a0874; font-weight: bold;">&#40;</span>branch name, ie <span style="color: #ff0000;">&quot;experimental&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">#Merge branch (branch) into current tree</span>
<span style="color: #c20cb9; font-weight: bold;">git</span> merge <span style="color: #7a0874; font-weight: bold;">&#40;</span>branch<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>That, of course, is just the beginning of what Git can do. If you find it useful, I highly recommend the official <a href="http://book.git-scm.com/index.html" target="_blank">Git Community Book</a> to get a much deeper idea of how to use this clever piece of software.<br />
<!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/6-useful-graphical-git-client-for-linux/2012/01/18' title='6 Useful Graphical Git Client for Linux'>6 Useful Graphical Git Client for Linux</a></li>
<li><a href='http://maketecheasier.com/open-source-file-syncing-and-collaboration-with-sparkleshare/2011/04/06' title='Open Source File Syncing And Collaboration With Sparkleshare'>Open Source File Syncing And Collaboration With Sparkleshare</a></li>
<li><a href='http://maketecheasier.com/manage-ruby-installations-easily-with-rvm/2011/02/22' title='How to Manage Ruby Installations Easily with RVM'>How to Manage Ruby Installations Easily with RVM</a></li>
<li><a href='http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11' title='Setting up Subversion Version control in Ubuntu'>Setting up Subversion Version control in Ubuntu</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11&amp;title=Beginner%26%238217%3Bs+Guide+to+Git&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/beginners-guide-to-git/2010/03/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/beginners-guide-to-git/2010/03/11">Beginner&#8217;s Guide to Git</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/beginners-guide-to-git/2010/03/11/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Setting up Subversion Version control in Ubuntu</title>
		<link>http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11</link>
		<comments>http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11#comments</comments>
		<pubDate>Mon, 11 Aug 2008 06:37:00 +0000</pubDate>
		<dc:creator>Damien Oh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[subversion svn]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=698</guid>
		<description><![CDATA[When developing a project, you may want to keep a version control of all your files so that you can easily revert to an earlier page (or the previous revision) to fix any bugs or in the event that someone accidentally deleted your files. In Ubuntu, the easiest way to... <p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11&amp;title=Setting+up+Subversion+Version+control+in+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11">Setting up Subversion Version control in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="Subversion logo" src="http://imagecdn.maketecheasier.com/2008/08/subversion_logo.jpg" alt="Subversion logo" width="250" height="216" align="left" />When developing a project, you may want to keep a version control of all your files so that you can easily revert to an earlier page (or the previous revision) to fix any bugs or in the event that someone accidentally deleted your files.</p>
<p>In Ubuntu, the easiest way to do version control is to set up a Subversion (SVN) server.</p>
<p><span id="more-698"></span><strong>Install SVN and Apache</strong></p>
<p class="codeblock">sudo apt-get install subversion libapache2-svn</p>
<p>Next, we are going to create a directory to hold your repository.</p>
<p class="codeblock">sudo svnadmin create /var/lib/svn</p>
<p>Give apache the access right to the repository</p>
<p class="codeblock">sudo chown -R www-data:www-data /var/lib/svn<br />
sudo chmod 770 -R /var/lib/svn</p>
<p><strong>Configure Apache for SVN access</strong></p>
<p class="codeblock">gksu gedit /etc/apache2/mods-available/dav_svn.conf</p>
<p>Uncomment the codes by removing the &#8216;#&#8217; in front of the following lines:</p>
<p class="codeblock">&lt;Location /svn&gt;<br />
&#8230;<br />
DAV svn<br />
&#8230;<br />
AuthType Basic<br />
AuthName &#8220;Subversion Repository&#8221;<br />
AuthUserFile /etc/apache2/dav_svn.passwd<br />
&#8230;<br />
&lt;LimitExcept GET PROPFIND OPTIONS REPORT&gt;<br />
Require valid-user<br />
&lt;/LimitExcept&gt;<br />
&lt;/Location&gt;</p>
<p>If you have only one repository for your SVN, uncomment the following line</p>
<p class="codeblock">SVNPath /var/lib/svn</p>
<p>Else if you are setting up multiple repositories, uncomment this line</p>
<p class="codeblock">SVNParentPath /var/lib/svn</p>
<p><em>Remember that at any time, only SVNPath or SVNParentPath is uncommented. Do not uncomment both at the same time.</em></p>
<p>Create a password for your username</p>
<p class="codeblock">sudo htpasswd -cm /etc/apache2/dav_svn.passwd yourusername</p>
<p>Restart apache</p>
<p class="codeblock">sudo /etc/init.d/apache2 restart</p>
<p>Now open your browser and go to <em>http://localhost/svn</em>. If you see the following, the your installation is successful.</p>
<p><img class="alignnone size-full wp-image-699" title="subversion" src="http://imagecdn.maketecheasier.com/2008/08/svn.jpg" alt="Subversion" width="338" height="102" /></p>
<p><strong>Importing your project into SVN</strong></p>
<p>You have successfully installed and configured SVN, now we need to import our project files to the SVN.</p>
<p class="codeblock">sudo apt-get install rapidsvn</p>
<p>Go to <em>Applications-&gt;Programming-&gt;RapidSVN</em></p>
<p>In the RapidSVN, go to <em>Repository-&gt;Import</em></p>
<p>In the window, enter the following:</p>
<p><img class="alignnone size-full wp-image-700" title="rapidsvn-import" src="http://imagecdn.maketecheasier.com/2008/08/rapidsvn-import.jpg" alt="rapidsvn-import" width="451" height="302" /></p>
<p>Click OK. Enter your <em>username</em> and <em>password</em>. Your project should be in the SVN now.</p>
<p><!--adsense#468x60--><br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://maketecheasier.com/integrate-skype-with-ubuntu-unity/2012/05/23' title='How to Integrate Skype With Ubuntu Unity'>How to Integrate Skype With Ubuntu Unity</a></li>
<li><a href='http://maketecheasier.com/install-java-runtime-in-ubuntu/2012/05/14' title='How to Install Java Runtime In Ubuntu 12.04'>How to Install Java Runtime In Ubuntu 12.04</a></li>
<li><a href='http://maketecheasier.com/connect-to-a-vpn-in-ubuntu/2012/05/07' title='How to Connect to A VPN In Ubuntu [Quick Tips]'>How to Connect to A VPN In Ubuntu [Quick Tips]</a></li>
<li><a href='http://maketecheasier.com/upgrade-to-gimp-2-8-in-ubuntu/2012/05/04' title='How to Upgrade to Gimp 2.8 in Ubuntu'>How to Upgrade to Gimp 2.8 in Ubuntu</a></li>
</ul>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11&amp;title=Setting+up+Subversion+Version+control+in+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11">Setting up Subversion Version control in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/setting-up-subversion-version-control-in-ubuntu/2008/08/11/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced
Content Delivery Network via Amazon Web Services: CloudFront: cdn.maketecheasier.com

Served from: maketecheasier.com @ 2012-05-25 22:42:16 -->
