<?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>bruzed.com &#187; Tools</title>
	<atom:link href="http://www.bruzed.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bruzed.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 04:10:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using git</title>
		<link>http://www.bruzed.com/2009/10/using-git/</link>
		<comments>http://www.bruzed.com/2009/10/using-git/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 15:57:19 +0000</pubDate>
		<dc:creator>bruzed</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[git]]></category>

		<guid isPermaLink="false">http://www.bruzed.com/?p=519</guid>
		<description><![CDATA[git commands I use regularly: gittutorial7 http://www.spheredev.org/wiki/Git_for_the_lazy http://git-scm.com/documentation]]></description>
			<content:encoded><![CDATA[<p>git commands I use regularly:</p>
<pre class="brush: bash; title: ; notranslate">
#-----------------
# Get status
#-----------------
$ git status

#-----------------
# Start new -&gt; from inside folder
#-----------------
$ git init

#-----------------
# Add
#-----------------
$ git add .
$ git add file1 newfile2 newfolder3

#-----------------
# Commit
#-----------------
$ git commit -m &quot;enter the comment&quot;

#-----------------
# Log
#-----------------
$ git log

#-----------------
# Using with github
#-----------------
$ git remote add origin git@github.com:user_name/repository_name.git
$ git push origin master
</pre>
<p><a href="http://www.kernel.org/pub/software/scm/git/docs/gittutorial.html">gittutorial7</a></p>
<p><a href="http://www.spheredev.org/wiki/Git_for_the_lazy">http://www.spheredev.org/wiki/Git_for_the_lazy</a></p>
<p><a href="http://git-scm.com/documentation">http://git-scm.com/documentation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bruzed.com/2009/10/using-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

