<?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>antoniolorusso.com &#187; GIT</title>
	<atom:link href="http://antoniolorusso.com/category/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://antoniolorusso.com</link>
	<description>About me and what I do :)</description>
	<lastBuildDate>Mon, 21 Jun 2010 22:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>super-easy Git remote repository</title>
		<link>http://antoniolorusso.com/2009/10/12/super-easy-git-remote-repository/</link>
		<comments>http://antoniolorusso.com/2009/10/12/super-easy-git-remote-repository/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 22:55:28 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[GIT]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/?p=245</guid>
		<description><![CDATA[1. Creating a remote repository before the local one Step 1: create the folder on the remote server and initialise the empty bare repository ssh username@yourserver mkdir yourgitremoterepo.git cd yourgitremoterepo.git git --bare init Step 2: back to your machine, clone the repository git clone username@yourserver:yourgitremoterepo.git 2. Making your existing local repository available on remote Step [...]]]></description>
			<content:encoded><![CDATA[<h2>1. Creating a remote repository before the local one</h2>
<p><strong>Step 1</strong>: create the folder on the remote server and initialise the empty bare repository<br />
<code><br />
ssh username@yourserver<br />
mkdir yourgitremoterepo.git<br />
cd yourgitremoterepo.git<br />
git --bare init<br />
</code><br />
<strong>Step 2</strong>: back to your machine, clone the repository<br />
<code><br />
git clone username@yourserver:yourgitremoterepo.git<br />
</code></p>
<h2>2. Making your existing local repository available on remote</h2>
<p><strong>Step 1:</strong> I assume that you have done something like this<br />
<code><br />
cd yourlocalrepo<br />
git init<br />
git add .<br />
git commit -a -m "first commit"<br />
</code><br />
<strong>Step 2:</strong> to create the remote repository, login to your remote server and initialise an empty bare repository<br />
<code><br />
ssh username@yourserver<br />
mkdir yourgitremoterepo.git<br />
cd yourgitremoterepo.git<br />
git --bare init<br />
</code><br />
<strong>Step 3: </strong>now back to your machine, link your remote repository with the local one and push all your files<br />
<code><br />
git remote add origin username@yourserver:yourgitremoterepo.git<br />
git push origin master<br />
</code></p>
<p>done!</p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/10/12/super-easy-git-remote-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the GIT cheatsheet</title>
		<link>http://antoniolorusso.com/2009/08/29/the-git-cheatsheet/</link>
		<comments>http://antoniolorusso.com/2009/08/29/the-git-cheatsheet/#comments</comments>
		<pubDate>Sat, 29 Aug 2009 11:47:21 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[cheatsheet]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2009/08/29/the-git-cheatsheet/</guid>
		<description><![CDATA[Finally the cheatsheet I was waiting for available here]]></description>
			<content:encoded><![CDATA[<p>Finally the cheatsheet I was waiting for <a href="http://zrusin.blogspot.com/2007/09/git-cheat-sheet.html">available here</a><br />
 <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/08/29/the-git-cheatsheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech Talk: Linus Torvalds on git</title>
		<link>http://antoniolorusso.com/2009/06/22/219/</link>
		<comments>http://antoniolorusso.com/2009/06/22/219/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 22:20:30 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linus]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2009/06/22/219/</guid>
		<description><![CDATA[Git explained by his the creator. I&#8217;m more convinced than ever!]]></description>
			<content:encoded><![CDATA[<p>Git explained by his the creator. I&#8217;m more convinced than ever!<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://youtube.com/v/4XpnKHJAok8" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://youtube.com/v/4XpnKHJAok8"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/06/22/219/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ignore .DS_Store forever in GIT</title>
		<link>http://antoniolorusso.com/2009/03/09/ignore-ds_store-forever-in-git/</link>
		<comments>http://antoniolorusso.com/2009/03/09/ignore-ds_store-forever-in-git/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 23:56:25 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[GIT]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[version control]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2009/03/09/ignore-ds_store-forever-in-git/</guid>
		<description><![CDATA[With a couple of little commands, you&#8217;ll be able to ignore the .DS_Store files forever from your git repositories on mac! The following command will add the .gitignore file to the git configuration git config --global core.excludesfile ~/.gitignore then, the following, will add the .DS_Store to the list echo .DS_Store &#62;&#62; ~/.gitignore and voilà!]]></description>
			<content:encoded><![CDATA[<p>With a couple of little commands, you&#8217;ll be able to ignore the .DS_Store files forever from your git repositories on mac!</p>
<p>The following command will add the .gitignore file to the git configuration<br />
<code><br />
git config --global core.excludesfile ~/.gitignore<br />
</code></p>
<p>then, the following, will add the .DS_Store to the list</p>
<p><code><br />
echo .DS_Store &gt;&gt; ~/.gitignore<br />
</code></p>
<p>and voilà!</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=e83f7a3e-301f-45e6-a80d-154706e6fe03" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/03/09/ignore-ds_store-forever-in-git/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
