<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>ThingsILearned &#187; revision control</title>
	<atom:link href="http://thingsilearned.com/category/revision-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://thingsilearned.com</link>
	<description>something new every day ... or so  By Dave Fowler</description>
	<lastBuildDate>Thu, 10 May 2012 17:32:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='thingsilearned.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>ThingsILearned &#187; revision control</title>
		<link>http://thingsilearned.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://thingsilearned.com/osd.xml" title="ThingsILearned" />
	<atom:link rel='hub' href='http://thingsilearned.com/?pushpress=hub'/>
		<item>
		<title>Comparing Github and BitBucket</title>
		<link>http://thingsilearned.com/2010/01/07/github-and-bitbucket/</link>
		<comments>http://thingsilearned.com/2010/01/07/github-and-bitbucket/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 03:52:56 +0000</pubDate>
		<dc:creator>godavemon</dc:creator>
				<category><![CDATA[revision control]]></category>

		<guid isPermaLink="false">http://thingsilearned.com/?p=682</guid>
		<description><![CDATA[There are a lot of advantages to using a distributed revision control system as opposed to centralized. There are also some down sides, mostly in that it can be a bit more confusing to manage. A centralized web interface however seems to solve that problem quite nicely. Currently there are two major competitors in that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thingsilearned.com&#038;blog=1027874&#038;post=682&#038;subd=thingsilearned&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are a lot of advantages to using a distributed revision control system as opposed to centralized.  There are also some down sides, mostly in that it can be a bit more confusing to manage.  A centralized web interface however seems to solve that problem quite nicely.</p>
<p>Currently there are two major competitors in that space, <a href="http://github.com">Github</a> and <a href="http://bitbucket.org/">Bitbucket</a>, that manage Git and Mercurial repositories respectively.  I&#8217;ve used Github for a while and recently have really started using Bitbucket and I thought I&#8217;d share some thoughts and comparisons of the two.  There are a lot of blogs that <a href="http://importantshock.wordpress.com/2008/08/07/git-vs-mercurial/">compare Git and Mercurial</a>, but this is not one of those blogs.  I personally have a preference for mercurial, but for admittedly stupid reasons like it was written in python and the syntax more closely resembles SVN which I&#8217;ve become used to.  To me, a major differentiator in choosing one over the other is the interface or &#8216;hub&#8217; that manages it.</p>
<p>Below is my item by item lineup showing the differences between GitHub and Bitbucket</p>
<table border="0" align="center">
<tbody>
<tr>
<th></th>
<th>GitHub</th>
<th>BitBucket</th>
</tr>
<tr>
<td>pull requests</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>forking</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>command instructions</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>distributed revision control</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>network graph</td>
<td class="good">yes</td>
<td class="bad">no</td>
</tr>
<tr>
<td>inline editing</td>
<td class="good">yes</td>
<td class="bad">no</td>
</tr>
<tr>
<td>developer profiles</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>wiki</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>issues</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>rss feeds</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>source browser</td>
<td class="good">yes</td>
<td class="good">yes</td>
</tr>
<tr>
<td>monthly price</td>
<td class="bad">cheap</td>
<td class="good">cheaper</td>
</tr>
<tr>
<td>free private projects</td>
<td class="bad">0</td>
<td class="good">1</td>
</tr>
<tr>
<td># of users</td>
<td class="good">lots</td>
<td class="bad">not lots</td>
</tr>
<tr>
<td>happy hours</td>
<td class="good">in SF</td>
<td class="bad">no</td>
</tr>
</tbody>
</table>
<p>There really aren&#8217;t a lot of differences.  Personally, I actively use both.  Learning both is easy as the syntax difference between the two revision control systems is minimal and both hub interfaces are very similar.</p>
<p>I use git for open projects like <a href="http://github.com/godavemon/TwitTornado">TwitTornado</a> where privacy is not an issue and where I&#8217;d like to get more developers involved. Its really got a fantastic social network of hackers.</p>
<p>I use bitbucket for my private repositories as it allows 1 free private repository (per user) and has cheaper monthly rates.</p>
<p>I hope this helps others make a decision between the two and try both of them out.  Let me know in the comments if I&#8217;ve left any parameters out of the table above and I&#8217;ll add them in.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/thingsilearned.wordpress.com/682/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/thingsilearned.wordpress.com/682/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/thingsilearned.wordpress.com/682/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=thingsilearned.com&#038;blog=1027874&#038;post=682&#038;subd=thingsilearned&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://thingsilearned.com/2010/01/07/github-and-bitbucket/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4b0e75fea564a9693a4592692e6baeb9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">godavemon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
