<?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>Commentaires sur : Git pour tous</title>
	<atom:link href="http://linux-attitude.fr/post/git-pour-tous/feed" rel="self" type="application/rss+xml" />
	<link>http://linux-attitude.fr/post/git-pour-tous</link>
	<description>Le libre est un état d&#039;esprit</description>
	<lastBuildDate>Wed, 21 Jul 2010 14:01:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Par : Etienne</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-450</link>
		<dc:creator>Etienne</dc:creator>
		<pubDate>Wed, 15 Apr 2009 14:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-450</guid>
		<description>&lt;p&gt;Ok, je ne savais pas que c&#039;était différent pour git 1.5 et 1.6.&lt;br /&gt;
Merci beaucoup pour le conseil :)&lt;br /&gt;
J&#039;aime beaucoup ton blog, on y trouve pas mal d&#039;astuces sympas. Continue.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Ok, je ne savais pas que c&#8217;était différent pour git 1.5 et 1.6.<br />
Merci beaucoup pour le conseil :)<br />
J&#8217;aime beaucoup ton blog, on y trouve pas mal d&#8217;astuces sympas. Continue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Par : Peck</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-449</link>
		<dc:creator>Peck</dc:creator>
		<pubDate>Wed, 15 Apr 2009 13:22:45 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-449</guid>
		<description>&lt;p&gt;@&lt;a href=&quot;#c783&quot;&gt;Etienne&lt;/a&gt; : Oui j&#039;ai eu le même problème avec git 1.5, il est résolu pour git 1.6&lt;br /&gt;
La seule solution que j&#039;ai trouvé était de faire&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;code&gt;$ git clone ssh://peck@machine1.net:1022/~peck/.git temporary&lt;br /&gt;
$ mv temporary/* .&lt;/code&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#c783">Etienne</a> : Oui j&#8217;ai eu le même problème avec git 1.5, il est résolu pour git 1.6<br />
La seule solution que j&#8217;ai trouvé était de faire</p>
<p>
<code>$ git clone ssh://peck@machine1.net:1022/~peck/.git temporary<br />
$ mv temporary/* .</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Par : Etienne</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-448</link>
		<dc:creator>Etienne</dc:creator>
		<pubDate>Wed, 15 Apr 2009 12:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-448</guid>
		<description>&lt;p&gt;Merci pour ces astuces.&lt;/p&gt;


&lt;p&gt;Cependant, j&#039;ai un petit soucis si je suis le tuto à la lettre :&lt;/p&gt;


&lt;p&gt;Quand j&#039;exécute la commande&lt;br /&gt;
&lt;code&gt;$ git clone ssh://peck@machine1.net:1022/~peck/.git .&lt;/code&gt;&lt;/p&gt;


&lt;p&gt;Il me retourne :&lt;br /&gt;
&lt;code&gt;fatal: destination directory &#039;.&#039; already exists.&lt;/code&gt;&lt;/p&gt;


&lt;p&gt;Normal, puisque mon home existe :) Mais comment forcer cela pour éviter qu&#039;il créé un répertoire ?&lt;br /&gt;
Dans les pages man, il est précisé qu&#039;il est impossible de ne pas créer un nouveau répertoire quand on clone.&lt;/p&gt;


&lt;p&gt;&lt;code&gt;&lt;directory&gt;&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;The name of a new directory to clone into. The &quot;humanish&quot; part of the source repository&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;is used if no directory is explicitly given (&quot;repo&quot; for &quot;/path/to/repo.git&quot; and &quot;foo&quot; for&lt;/code&gt;&lt;br /&gt;
&lt;code&gt;&quot;host.xz:foo/.git&quot;). Cloning into an existing directory is not allowed.&lt;/code&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Merci pour ces astuces.</p>
<p>Cependant, j&#8217;ai un petit soucis si je suis le tuto à la lettre :</p>
<p>Quand j&#8217;exécute la commande<br />
<code>$ git clone ssh://peck@machine1.net:1022/~peck/.git .</code></p>
<p>Il me retourne :<br />
<code>fatal: destination directory '.' already exists.</code></p>
<p>Normal, puisque mon home existe :) Mais comment forcer cela pour éviter qu&#8217;il créé un répertoire ?<br />
Dans les pages man, il est précisé qu&#8217;il est impossible de ne pas créer un nouveau répertoire quand on clone.</p>
<p><code>&lt;directory&gt;</code><br />
<code>The name of a new directory to clone into. The "humanish" part of the source repository</code><br />
<code>is used if no directory is explicitly given ("repo" for "/path/to/repo.git" and "foo" for</code><br />
<code>"host.xz:foo/.git"). Cloning into an existing directory is not allowed.</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Par : pbla</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-446</link>
		<dc:creator>pbla</dc:creator>
		<pubDate>Fri, 10 Apr 2009 18:37:54 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-446</guid>
		<description>&lt;p&gt;La partie concernant le &quot;téléportage&quot; :&lt;/p&gt;


&lt;p&gt;(Ajoutez un -R 1022:localhost:22 par exemple si la communication retour ne fonctionne pas directement)&lt;br /&gt;
$ ssh peck@machine2.net&lt;br /&gt;
$ git clone ssh://peck@machine1.net:1022/~peck/.git .&lt;/p&gt;


&lt;p&gt;serait peut-être plus claire ainsi :&lt;/p&gt;


&lt;p&gt;$ ssh peck@machine2.net&lt;br /&gt;
$ git clone ssh://peck@machine1.net/~peck/.git .&lt;/p&gt;


&lt;p&gt;Si la communication retour ne fonctionne pas directement :&lt;br /&gt;
$ ssh peck@machine2.net -R 1022:localhost:22&lt;br /&gt;
$ git clone ssh://peck@localhost:1022/~peck/.git .&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Merci pour ces articles intéressants ;-)&lt;/li&gt;
&lt;/ul&gt;</description>
		<content:encoded><![CDATA[<p>La partie concernant le "téléportage" :</p>
<p>(Ajoutez un -R 1022:localhost:22 par exemple si la communication retour ne fonctionne pas directement)<br />
$ ssh <a href="mailto:peck@machine2.net">peck@machine2.net</a><br />
$ git clone ssh://peck@machine1.net:1022/~peck/.git .</p>
<p>serait peut-être plus claire ainsi :</p>
<p>$ ssh <a href="mailto:peck@machine2.net">peck@machine2.net</a><br />
$ git clone ssh://peck@machine1.net/~peck/.git .</p>
<p>Si la communication retour ne fonctionne pas directement :<br />
$ ssh <a href="mailto:peck@machine2.net">peck@machine2.net</a> -R 1022:localhost:22<br />
$ git clone ssh://peck@localhost:1022/~peck/.git .</p>
<ul>
<li>Merci pour ces articles intéressants ;-)</li>
</ul>
]]></content:encoded>
	</item>
	<item>
		<title>Par : tight</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-445</link>
		<dc:creator>tight</dc:creator>
		<pubDate>Fri, 10 Apr 2009 17:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-445</guid>
		<description>&lt;p&gt;Excellent comme idée ! J&#039;y aurais jamais pensé (alors que j&#039;ai un paquet de &lt;em&gt;truc.conf-backup-avant-tel-modif&lt;/em&gt;)&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Excellent comme idée ! J&#8217;y aurais jamais pensé (alors que j&#8217;ai un paquet de <em>truc.conf-backup-avant-tel-modif</em>)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Par : Edouard</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-444</link>
		<dc:creator>Edouard</dc:creator>
		<pubDate>Fri, 10 Apr 2009 16:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-444</guid>
		<description>&lt;p&gt;Super deuxième partie de tuto, merci&lt;br /&gt;
La &quot;téléportation&quot; et la surveillance de /etc /home ont l&#039;air très simples et pratiques.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Super deuxième partie de tuto, merci<br />
La "téléportation" et la surveillance de /etc /home ont l&#8217;air très simples et pratiques.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Par : Data</title>
		<link>http://linux-attitude.fr/post/git-pour-tous/comment-page-1#comment-442</link>
		<dc:creator>Data</dc:creator>
		<pubDate>Fri, 10 Apr 2009 14:26:59 +0000</pubDate>
		<guid isPermaLink="false">http://linux-attitude.fr/post/git-pour-tous#comment-442</guid>
		<description>&lt;p&gt;@&lt;a href=&quot;#c774&quot;&gt;Melaneum&lt;/a&gt; :&lt;/p&gt;


&lt;p&gt;Git est disponible sous Windows:&lt;br /&gt;
- &lt;a href=&quot;http://code.google.com/p/msysgit/&quot; title=&quot;http://code.google.com/p/msysgit/&quot;&gt;http://code.google.com/p/msysgit/&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://code.google.com/p/tortoisegit/&quot; title=&quot;http://code.google.com/p/tortoisegit/&quot;&gt;http://code.google.com/p/tortoisegi...&lt;/a&gt;&lt;br /&gt;
- ou encore via Cygwin&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>@<a href="#c774">Melaneum</a> :</p>
<p>Git est disponible sous Windows:<br />
- <a href="http://code.google.com/p/msysgit/" title="http://code.google.com/p/msysgit/">http://code.google.com/p/msysgit/</a><br />
- <a href="http://code.google.com/p/tortoisegit/" title="http://code.google.com/p/tortoisegit/"></a><a href="http://code.google.com/p/tortoisegi.." rel="nofollow">http://code.google.com/p/tortoisegi..</a>.<br />
- ou encore via Cygwin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using apc (user agent is rejected)
Database Caching using apc

Served from: linux-attitude.fr @ 2010-07-31 04:28:42 -->