<?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>HostOnNet.com &#187; Git</title>
	<atom:link href="http://blog.hostonnet.com/category/git/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.hostonnet.com</link>
	<description>Windows, Linux, Ubuntu, Web Hosting</description>
	<lastBuildDate>Mon, 07 Jun 2010 08:14:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Symfony 2 Migration to Git</title>
		<link>http://blog.hostonnet.com/symfony-2-migration-to-git</link>
		<comments>http://blog.hostonnet.com/symfony-2-migration-to-git#comments</comments>
		<pubDate>Tue, 09 Feb 2010 14:57:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[cakephp]]></category>

		<guid isPermaLink="false">http://blog.hostonnet.com/?p=203</guid>
		<description><![CDATA[Symfony is a PHP RAD framework like Zend Framework, CakePHP, etc&#8230; They have been using subversion for version control. Today while checking language section of github.com, i found Symfony version 2 is using git for source control. See the announcement at symfony blog http://www.symfony-project.org/ Other opensource project like CakePHP, Gallery 2, etc.. are using git [...]]]></description>
			<content:encoded><![CDATA[<p>Symfony is a PHP RAD framework like Zend Framework, CakePHP, etc&#8230; They have been using subversion for version control. Today while checking language section of github.com, i found Symfony version 2 is using git for source control.</p>
<p>See the announcement at symfony blog</p>
<p><a href="http://www.symfony-project.org/blog/2010/01/13/symfony-2-migration-to-git">http://www.symfony-project.org/</a></p>
<p>Other opensource project like CakePHP, Gallery 2, etc.. are using git for source control.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hostonnet.com/symfony-2-migration-to-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pro Git</title>
		<link>http://blog.hostonnet.com/pro-git</link>
		<comments>http://blog.hostonnet.com/pro-git#comments</comments>
		<pubDate>Tue, 09 Feb 2010 14:52:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git book]]></category>
		<category><![CDATA[pro git]]></category>
		<category><![CDATA[progit]]></category>

		<guid isPermaLink="false">http://blog.hostonnet.com/?p=201</guid>
		<description><![CDATA[Pro Git is git book, that is available in print and online. Online version is free to use, can be found at http://progit.org/book/]]></description>
			<content:encoded><![CDATA[<p>Pro Git is git book, that is available in print and online. Online version is free to use, can be found at</p>
<p><a href="http://progit.org/book/">http://progit.org/book/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hostonnet.com/pro-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git: &#8216;svn&#8217; is not a git-command. See &#8216;git &#8211;help&#8217;.</title>
		<link>http://blog.hostonnet.com/git-svn-is-not-a-git-command-see-git-help</link>
		<comments>http://blog.hostonnet.com/git-svn-is-not-a-git-command-see-git-help#comments</comments>
		<pubDate>Sat, 06 Feb 2010 20:15:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[git svn]]></category>

		<guid isPermaLink="false">http://blog.hostonnet.com/?p=199</guid>
		<description><![CDATA[On ubuntu , when i run git svn, i get following error root@hostonnet:/usr/local/zend/share# git svn clone http://framework.zend.com/svn/framework/standard/trunk git: 'svn' is not a git-command. See 'git --help'. root@hostonnet:/usr/local/zend/share# This is fixed by installing git-svn sudo apt-get install git-svn]]></description>
			<content:encoded><![CDATA[<p>On ubuntu , when i run git svn, i get following error</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>hostonnet:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>zend<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #666666; font-style: italic;"># git svn clone http://framework.zend.com/svn/framework/standard/trunk</span>
git: <span style="color: #ff0000;">'svn'</span> is not a git-command. See <span style="color: #ff0000;">'git --help'</span>.
root<span style="color: #000000; font-weight: bold;">@</span>hostonnet:<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>zend<span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #666666; font-style: italic;">#</span></pre></div></div>

<p>This is fixed by installing git-svn</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> git-svn</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.hostonnet.com/git-svn-is-not-a-git-command-see-git-help/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linus Torvalds on git</title>
		<link>http://blog.hostonnet.com/linus-torvalds-on-git</link>
		<comments>http://blog.hostonnet.com/linus-torvalds-on-git#comments</comments>
		<pubDate>Mon, 01 Feb 2010 16:56:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[Linus Torvalds]]></category>
		<category><![CDATA[Linus Torvalds on git]]></category>

		<guid isPermaLink="false">http://blog.hostonnet.com/?p=195</guid>
		<description><![CDATA[Linus Torvalds talk about git in google teach talk. Every subversion and CVS users must watch this video. we have switched from subversion to git as it allow partial commit (that is you commit part of changes in a file) and it allow you to commit offline, then push to any number of remote repository.]]></description>
			<content:encoded><![CDATA[<p>Linus Torvalds talk about git in google teach talk.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/4XpnKHJAok8&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/4XpnKHJAok8&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Every subversion and CVS users must watch this video. </p>
<p>we have switched from subversion to git as it allow partial commit (that is you commit part of changes in a file) and it allow you to commit offline, then push to any number of remote repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hostonnet.com/linus-torvalds-on-git/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>git svn error Can&#8217;t locate SVN/Core.pm</title>
		<link>http://blog.hostonnet.com/git-svn-error-cant-locate-svncore-pm</link>
		<comments>http://blog.hostonnet.com/git-svn-error-cant-locate-svncore-pm#comments</comments>
		<pubDate>Mon, 01 Feb 2010 16:51:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>
		<category><![CDATA[git svn]]></category>
		<category><![CDATA[hypervm]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://blog.hostonnet.com/?p=193</guid>
		<description><![CDATA[When i try to clone a svn project to git, i got error root@server70 &#91;~/lxlabs/git&#93;# git svn clone http://svn.lxcenter.org/svn/hypervm Can't locate SVN/Core.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8 /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.7/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.6/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.5/x86_64-linux-thread-multi /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl/5.8.6 /usr/lib/perl5/site_perl/5.8.5 /usr/lib/perl5/site_perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.7/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.6/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.5/x86_64-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl/5.8.6 /usr/lib/perl5/vendor_perl/5.8.5 /usr/lib/perl5/vendor_perl /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/5.8.8 .) at /usr/libexec/git-core/git-svn line 39. root@server70 [~/lxlabs/git]# This error [...]]]></description>
			<content:encoded><![CDATA[<p>When i try to clone a svn project to git, i got error</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">root<span style="color: #000000; font-weight: bold;">@</span>server70 <span style="color: #7a0874; font-weight: bold;">&#91;</span>~<span style="color: #000000; font-weight: bold;">/</span>lxlabs<span style="color: #000000; font-weight: bold;">/</span>git<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #666666; font-style: italic;"># git svn clone http://svn.lxcenter.org/svn/hypervm</span>
Can<span style="color: #ff0000;">'t locate SVN/Core.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8 /usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.7/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.6/x86_64-linux-thread-multi /usr/lib64/perl5/site_perl/5.8.5/x86_64-linux-thread-multi /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl/5.8.6 /usr/lib/perl5/site_perl/5.8.5 /usr/lib/perl5/site_perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.7/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.6/x86_64-linux-thread-multi /usr/lib64/perl5/vendor_perl/5.8.5/x86_64-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl/5.8.6 /usr/lib/perl5/vendor_perl/5.8.5 /usr/lib/perl5/vendor_perl /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi /usr/lib/perl5/5.8.8 .) at /usr/libexec/git-core/git-svn line 39.
root@server70 [~/lxlabs/git]#</span></pre></div></div>

<p>This error is fixed by installing subversion-perl</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">yum <span style="color: #c20cb9; font-weight: bold;">install</span> subversion-perl</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.hostonnet.com/git-svn-error-cant-locate-svncore-pm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
