<?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>Silence is Foo &#187; git</title>
	<atom:link href="http://raflabs.com/blogs/silence-is-foo/category/git-scm/feed/" rel="self" type="application/rss+xml" />
	<link>http://raflabs.com/blogs/silence-is-foo</link>
	<description>Mental notes on Ruby, Git, Rails and whatever geeky thing</description>
	<lastBuildDate>Thu, 07 Apr 2011 19:11:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Understanding the staging area, index and cache in Git</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2011/04/07/staging-area-index-cache-git/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2011/04/07/staging-area-index-cache-git/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 19:11:16 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=1065</guid>
		<description><![CDATA[When you are first learning Git it's a little bit confusing to undersand some of its terminology: sometimes it uses different words for the same thing, sometimes it uses the same word for different things, sometimes it isn't just the terminology in the documentation but the name of some options.
Let's start with the --cached option, [...]]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2011/04/07/staging-area-index-cache-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git submodules statistics in the terminal prompt</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2010/08/21/git-submodules-statistics-terminal-prompt/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2010/08/21/git-submodules-statistics-terminal-prompt/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 18:49:10 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[submodule]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=803</guid>
		<description><![CDATA[When I'm working in projects with submodules and I make a change in one of the submodules I have to go to every submodule directory to review the changes, some times I didn't make any change in a submodule but my memory is not that smart to know that and it's a waste of time.
The [...]]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2010/08/21/git-submodules-statistics-terminal-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing a gem fork from Github source</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 18:08:37 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[rubygems]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=472</guid>
		<description><![CDATA[Usually, installing a gem is as easy as issuing:

gem install gem_name

but, what if you want to install a fork of a gem?
As you may know Github no longer hosts gems, so doing the following won't work:
$ sudo gem install technoweenie-grit --source http://gems.github.com
NOTE: Actually it'd work if the gem you're trying to install is in this [...]]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2010/07/19/installing-a-gem-fork-from-github-source/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ignoring files in Git</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2009/12/29/ignoring-files-in-git/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2009/12/29/ignoring-files-in-git/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 01:00:17 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[gitignore]]></category>
		<category><![CDATA[update-index]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=200</guid>
		<description><![CDATA[I've realized that there is a general misunderstandig about ignoring files in Git. People often try to ignore changes to tracked files adding them to a .gitignore file, but you should know that Git will ignore files in .gitignore only of the files are not already tracked ("tracked" means that the file is in the [...]]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2009/12/29/ignoring-files-in-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMFG, do I really have to get back to SVN??? Part 2</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2009/10/09/omfg-do-i-really-have-to-get-back-to-svn-part-2/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2009/10/09/omfg-do-i-really-have-to-get-back-to-svn-part-2/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 23:36:23 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=93</guid>
		<description><![CDATA[In the first part of this post we started to use git to commit to/update from a SVN server, but we didn't touch one of the more interesting parts of Git: branching
Why would I want to use the git branching capabilities?

because you can't create local branches in SVN
because you can't commit locally in SVN

In this [...]]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2009/10/09/omfg-do-i-really-have-to-get-back-to-svn-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMFG, do I really have to get back to SVN??? Part 1</title>
		<link>http://raflabs.com/blogs/silence-is-foo/2009/09/28/omfg-do-i-really-have-to-get-back-to-svn-part-1/</link>
		<comments>http://raflabs.com/blogs/silence-is-foo/2009/09/28/omfg-do-i-really-have-to-get-back-to-svn-part-1/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 01:58:48 +0000</pubDate>
		<dc:creator>raf</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://raflabs.com/blogs/silence-is-foo/?p=54</guid>
		<description><![CDATA[How to use svn with git-svn]]></description>
		<wfw:commentRss>http://raflabs.com/blogs/silence-is-foo/2009/09/28/omfg-do-i-really-have-to-get-back-to-svn-part-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

