<?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>The Power of Mind &#187; github</title>
	<atom:link href="http://draxus.org/weblog/tag/github/feed/" rel="self" type="application/rss+xml" />
	<link>http://draxus.org/weblog</link>
	<description>El blog de DraXus</description>
	<lastBuildDate>Wed, 18 Jan 2012 13:43:27 +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>Cómo clonar ramas (branch) en git</title>
		<link>http://draxus.org/weblog/2009/04/18/como-clonar-ramas-branch-en-git/</link>
		<comments>http://draxus.org/weblog/2009/04/18/como-clonar-ramas-branch-en-git/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 15:17:53 +0000</pubDate>
		<dc:creator>DraXus</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://draxus.org/weblog/?p=1197</guid>
		<description><![CDATA[Escenario Tienes tu proyecto en un repositorio de github.com con dos ramas (master y foo) y quieres clonarlas a tu disco duro. Solución git clone git@github.com:usuario/proyecto.git Con esto obtendremos la rama principal (master). git fetch git checkout --track -b foo origin/foo Y con esto otro la rama foo. ¿Conocéis alguna forma más sencilla? En este [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Escenario</strong><br />
Tienes tu proyecto en un repositorio de github.com con dos ramas (<em>master</em> y <em>foo</em>) y quieres clonarlas a tu disco duro.</p>
<p><strong>Solución</strong></p>
<pre><code>git clone git@github.com:usuario/proyecto.git</code></pre>
<p>Con esto obtendremos la rama principal (<em>master</em>).</p>
<pre><code>git fetch
git checkout --track -b foo origin/foo</code></pre>
<p>Y con esto otro la rama <em>foo</em>.</p>
<p>¿Conocéis alguna forma más sencilla? En este caso tenemos dos ramas, pero si hubiese N+1, ¿tendremos que descargar todas una a una?</p>
<p><a href="http://groups.google.com/group/github/browse_thread/thread/71f944b925467ab6">Vía</a></p>
]]></content:encoded>
			<wfw:commentRss>http://draxus.org/weblog/2009/04/18/como-clonar-ramas-branch-en-git/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

