<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Git Tutorial 02 &#8211; The basics</title>
	<atom:link href="http://www.20papercups.net/tutorials/git-vtm02-the-basics/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/</link>
	<description>The (awesome) website of Michael Marner</description>
	<lastBuildDate>Wed, 14 Dec 2011 14:41:06 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: airtonix</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-1139</link>
		<dc:creator>airtonix</dc:creator>
		<pubDate>Fri, 25 Nov 2011 03:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-1139</guid>
		<description>These are good videos, however a similar set of videos aimed at people who haven&#039;t used version control before would be great.

all you need to change really is don&#039;t make any comparisons to other version control systems. and possibly demonstrate all these actions with nautilus-rabbitvcs</description>
		<content:encoded><![CDATA[<p>These are good videos, however a similar set of videos aimed at people who haven&#8217;t used version control before would be great.</p>
<p>all you need to change really is don&#8217;t make any comparisons to other version control systems. and possibly demonstrate all these actions with nautilus-rabbitvcs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-874</link>
		<dc:creator>Carlos</dc:creator>
		<pubDate>Wed, 04 May 2011 13:56:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-874</guid>
		<description>Thanks for this video , I&#039;m learning git and this helped me a lot.  And I also work on a Linux machine</description>
		<content:encoded><![CDATA[<p>Thanks for this video , I&#8217;m learning git and this helped me a lot.  And I also work on a Linux machine</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-411</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Thu, 15 Jul 2010 00:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-411</guid>
		<description>Sometimes (such as for the initial commit), the commit message is not so important. Putting the commit message on the command line is just a shortcut; it makes no difference as far as git is concerned.</description>
		<content:encoded><![CDATA[<p>Sometimes (such as for the initial commit), the commit message is not so important. Putting the commit message on the command line is just a shortcut; it makes no difference as far as git is concerned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack McShea</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-409</link>
		<dc:creator>Jack McShea</dc:creator>
		<pubDate>Fri, 09 Jul 2010 23:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-409</guid>
		<description>commit -a -m &quot;comment&quot; 

Any reason not to use the commit -a -m format instead of making a trip to the editor?</description>
		<content:encoded><![CDATA[<p>commit -a -m &#8220;comment&#8221; </p>
<p>Any reason not to use the commit -a -m format instead of making a trip to the editor?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-407</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 09 Jul 2010 02:02:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-407</guid>
		<description>When you create a project in Git (either with a git init or a git cone), Git will put a hidden folder into the project&#039;s directory (called .git). In this folder are all the settings and stored objects for that project.

Whenever you type a command (such as git status or git log), git will look for the .git folder in the current directory, or work its way through parent directories until it finds it.

Therefore, you don&#039;t have to do anything to switch projects, other than to cd into the correct directory. Git will use whatever repo (.git folder) it finds first.</description>
		<content:encoded><![CDATA[<p>When you create a project in Git (either with a git init or a git cone), Git will put a hidden folder into the project&#8217;s directory (called .git). In this folder are all the settings and stored objects for that project.</p>
<p>Whenever you type a command (such as git status or git log), git will look for the .git folder in the current directory, or work its way through parent directories until it finds it.</p>
<p>Therefore, you don&#8217;t have to do anything to switch projects, other than to cd into the correct directory. Git will use whatever repo (.git folder) it finds first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack McShea</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-406</link>
		<dc:creator>Jack McShea</dc:creator>
		<pubDate>Thu, 08 Jul 2010 18:08:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-406</guid>
		<description>Maybe I&#039;m being dense, but suppose I setup several projects in Git, each in a different directory, how do I switch between them?</description>
		<content:encoded><![CDATA[<p>Maybe I&#8217;m being dense, but suppose I setup several projects in Git, each in a different directory, how do I switch between them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Miguel Mota</title>
		<link>http://www.20papercups.net/tutorials/git-vtm02-the-basics/comment-page-1/#comment-274</link>
		<dc:creator>Miguel Mota</dc:creator>
		<pubDate>Sat, 26 Dec 2009 07:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=172#comment-274</guid>
		<description>thanks dude, i get it now
awesome tuts</description>
		<content:encoded><![CDATA[<p>thanks dude, i get it now<br />
awesome tuts</p>
]]></content:encoded>
	</item>
</channel>
</rss>

