<?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>Milton Soares Filho &#187; VCS</title>
	<atom:link href="http://blog.msoares.pro.br/tags/vcs/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.msoares.pro.br</link>
	<description>Random rants and SW developers' stuff</description>
	<lastBuildDate>Fri, 28 May 2010 14:42:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>gource: OpenGL-based 3D visualisation tool for source control repositories</title>
		<link>http://blog.msoares.pro.br/archives/gource-opengl-based-3d-visualisation-tool-for-source-control-repositories</link>
		<comments>http://blog.msoares.pro.br/archives/gource-opengl-based-3d-visualisation-tool-for-source-control-repositories#comments</comments>
		<pubDate>Fri, 28 May 2010 14:42:04 +0000</pubDate>
		<dc:creator>milton</dc:creator>
				<category><![CDATA[Planet INdT]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[devel]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[gource]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[VCS]]></category>

		<guid isPermaLink="false">http://blog.msoares.pro.br/?p=211</guid>
		<description><![CDATA[Too much fun the tool I&#8217;ve came to know through my friend Adenilson&#8217;s blog. In a glance one can explore effort put into a project in a way much better than any other command-line or graphical application known.
The only boring thing is to use it in my machine, a hp pavilion dv4-2167sb, which, AFAIK, still [...]]]></description>
			<content:encoded><![CDATA[<p>Too much fun the tool I&#8217;ve came to know through my friend Adenilson&#8217;s <a href="http://savago.wordpress.com/2010/05/21/6-months-of-plasma-in-10-minutes">blog</a>. In a glance one can explore effort put into a project in a way much better than any other command-line or graphical application known.</p>
<p>The only boring thing is to use it in my machine, a hp pavilion dv4-2167sb, which, AFAIK, still lacks a good graphical acceleration support.</p>
<p>I&#8217;ve made a very basic debian package (using <a href="http://checkinstall.izto.org/">checkinstall</a>) for people too lazy to compile/install by themselves.</p>
<p><a href="wp-content/uploads/2010/01/gource_0.26b-1_i386.deb">Enjoy it</a> and have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.msoares.pro.br/archives/gource-opengl-based-3d-visualisation-tool-for-source-control-repositories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Empty Branches</title>
		<link>http://blog.msoares.pro.br/archives/git-empty-branches</link>
		<comments>http://blog.msoares.pro.br/archives/git-empty-branches#comments</comments>
		<pubDate>Thu, 14 May 2009 18:38:15 +0000</pubDate>
		<dc:creator>milton</dc:creator>
				<category><![CDATA[Planet INdT]]></category>
		<category><![CDATA[devel]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[VCS]]></category>

		<guid isPermaLink="false">http://blog.msoares.pro.br/?p=85</guid>
		<description><![CDATA[Found out some interesting Git Hints presented as webcasts at the site below. The most interesting part was to learn how to create empty branches on it, so a project can be functionally separated without having to kludge your working dir with several directories.
GitCasts: Empty Branches
Summarizing the lesson:

$ git-symbolic-ref HEAD refs/heads/emptybranch
$ git-rm --cached -r .
$ [...]]]></description>
			<content:encoded><![CDATA[<p>Found out some interesting Git Hints presented as webcasts at the site below. The most interesting part was to learn how to create empty branches on it, so a project can be functionally separated without having to kludge your working dir with several directories.</p>
<p><a href="http://gitcasts.com/posts/empty-branches">GitCasts: Empty Branches</a></p>
<p>Summarizing the lesson:</p>
<pre>
$ git-symbolic-ref HEAD refs/heads/emptybranch
$ git-rm --cached -r .
$ git-commit --allow-empty -m "Initial commit for empty branch"
</pre>
<p>The library versus website example was perfect, but one can think about other relevant situations, like sub-projects inside a bigger project, management documentation or even meta-files configuring the repository itself (description and <a href="http://en.wikipedia.org/wiki/Access_control_list">ACL</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.msoares.pro.br/archives/git-empty-branches/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git References&#8217; Pointers</title>
		<link>http://blog.msoares.pro.br/archives/git-references-pointers</link>
		<comments>http://blog.msoares.pro.br/archives/git-references-pointers#comments</comments>
		<pubDate>Wed, 25 Mar 2009 12:47:39 +0000</pubDate>
		<dc:creator>milton</dc:creator>
				<category><![CDATA[Planet INdT]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[devel]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[VCS]]></category>

		<guid isPermaLink="false">http://msoares.dreamhosters.com/?p=37</guid>
		<description><![CDATA[Earlier this year I&#8217;ve spent some time gathering references to study Git, the version control system everybody seems to love nowadays.
Thankfully, someone took the time to bind several useful links in one central webpage. If you wanna start studying Git, that&#8217;s the place to start. Kudos for such practical people (more specifically Scott Charcon and [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this year I&#8217;ve spent some time gathering references to study Git, the version control system everybody seems to love nowadays.</p>
<p>Thankfully, someone took the time to bind several useful links in one central webpage. If you wanna start studying Git, that&#8217;s the place to start. Kudos for such practical people (more specifically Scott Charcon and Petr Baudis).</p>
<p>  <a href="http://git-scm.com/documentation">http://git-scm.com/documentation</a></p>
<p>Just for reference, I&#8217;ll paste below the stuff I had.</p>
<blockquote><p>
Forwarded conversation<br />
Subject: Git Documentation Pointers<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
From: Milton Soares<br />
Date: Mon, Jan 19, 2009 at 12:33 PM</p>
<p>Hi.</p>
<p>Just to organize and share all the references I&#8217;ve gathered about Git learning.</p>
<p>On-line Resources</p>
<p> $ git help git<br />
 $ man gittutorial</p>
<p>Git Homepage Resources</p>
<p> <a href="http://www.kernel.org/pub/software/scm/git/docs/everyday.html">http://www.kernel.org/pub/software/scm/git/docs/everyday.html</a><br />
 <a href="http://www.kernel.org/pub/software/scm/git/docs/user-manual.html">http://www.kernel.org/pub/software/scm/git/docs/user-manual.html</a></p>
<p>SVN to Git crash course</p>
<p> <a href="http://git.or.cz/course/svn.html">http://git.or.cz/course/svn.html</a></p>
<p>Recording of the Git tutorial given by Bart Trojanowski for the OGRE</p>
<p> <a href="http://excess.org/article/2008/07/ogre-git-tutorial/">http://excess.org/article/2008/07/ogre-git-tutorial/</a></p>
<p>Palestra Git para o Google by Linux Torvalds</p>
<p> <a href="http://br.youtube.com/watch?v=4XpnKHJAok8">http://br.youtube.com/watch?v=4XpnKHJAok8</a></p>
<p>Git from the bottom up</p>
<p> <a href="http://www.newartisans.com/blog_files/git.from.bottom.up.php">http://www.newartisans.com/blog_files/git.from.bottom.up.php</a></p>
<p>&#8212;&#8212;&#8212;-<br />
From: Milton Soares<br />
Date: Tue, Jan 20, 2009 at 4:36 PM</p>
<p>More pointers:</p>
<p>GitWine &#8211; git tips by wine people</p>
<p> <a href="http://wiki.winehq.org/GitWine#head-079f5369fdb9346845a4a8c82475eb7a198312be">http://wiki.winehq.org/GitWine#head-079f5369fdb9346845a4a8c82475eb7a198312be</a></p>
<p>Git Wizardry</p>
<p> <a href="http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html">http://www-cs-students.stanford.edu/~blynn/gitmagic/index.html</a></p>
<p>Git Wiki</p>
<p> <a href="http://git.or.cz/gitwiki/">http://git.or.cz/gitwiki/</a></p>
<p>Git Cheat Sheet</p>
<p> <a href="http://ktown.kde.org/~zrusin/git/">http://ktown.kde.org/~zrusin/git/</a></p>
<p>&#8212;&#8212;&#8212;-<br />
From: Milton Soares Filho<br />
Date: Sat, Feb 21, 2009 at 11:15 AM</p>
<p>Yet another usefull link (pretty graphical explanations on git objects).</p>
<p>Tv&#8217;s cobweb: Git for Computer Scientists</p>
<p> <a href="http://eagain.net/articles/git-for-computer-scientists/">http://eagain.net/articles/git-for-computer-scientists/</a>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.msoares.pro.br/archives/git-references-pointers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
