<?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>Comments on: How to install Git on a shared host</title>
	<atom:link href="http://joemaller.com/908/how-to-install-git-on-a-shared-host/feed/" rel="self" type="application/rss+xml" />
	<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/</link>
	<description>.com</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:14:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Anonymous</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235095</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 18 Jan 2012 13:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235095</guid>
		<description>Great tutorial ~~
But I got the latest git from the official site. Currently its on 1.7.8.3.</description>
		<content:encoded><![CDATA[<p>Great tutorial ~~<br />
But I got the latest git from the official site. Currently its on 1.7.8.3.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josiah</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235059</link>
		<dc:creator>Josiah</dc:creator>
		<pubDate>Tue, 06 Dec 2011 17:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235059</guid>
		<description>I was having the same issue as Bryan, and this fixed it!  Thank you so much!!!
</description>
		<content:encoded><![CDATA[<p>I was having the same issue as Bryan, and this fixed it!  Thank you so much!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FireMouse</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235048</link>
		<dc:creator>FireMouse</dc:creator>
		<pubDate>Sat, 03 Dec 2011 21:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235048</guid>
		<description>I learned so much just from this one brief tutorial! 
I&#039;ve never permanently added to the $PATH environment using .bashrc before, and never brought in source and ran a &quot;make&quot; with a compiler before - and never added man pages before. . . 
Of course, you have to already know your way around a little bit to handle this, But far too many tutorials are sloppy, inaccurate, and obfuscated with too much unnecessary &quot;fluff&quot;.  

Thank you Joe for your excellent, concise and to the point tutorial!  </description>
		<content:encoded><![CDATA[<p>I learned so much just from this one brief tutorial!<br />
I&#8217;ve never permanently added to the $PATH environment using .bashrc before, and never brought in source and ran a &#8220;make&#8221; with a compiler before &#8211; and never added man pages before. . .<br />
Of course, you have to already know your way around a little bit to handle this, But far too many tutorials are sloppy, inaccurate, and obfuscated with too much unnecessary &#8220;fluff&#8221;.  </p>
<p>Thank you Joe for your excellent, concise and to the point tutorial! </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Phil</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235031</link>
		<dc:creator>Phil</dc:creator>
		<pubDate>Tue, 22 Nov 2011 19:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235031</guid>
		<description>After a bit of messing around, here&#039;s how to install the man pages assuming your install prefix was $HOME/opt as above (substitute your version number as appropriate below):

cd $HOME/opt/share/man/

curl -LO &quot;http://git-core.googlecode.com/files/git-manpages-1.7.7.4.tar.gz

tar xvfz git-manpages-1.7.7.4.tar.gz

You should now have man1, man5 and man7 directories in $HOME/opt/share/man

The last step is to make sure man finds them (add this to .bashrc):

export MANPATH=$HOME/opt/share/man:$MANPATH</description>
		<content:encoded><![CDATA[<p>After a bit of messing around, here&#8217;s how to install the man pages assuming your install prefix was $HOME/opt as above (substitute your version number as appropriate below):</p>
<p>cd $HOME/opt/share/man/</p>
<p>curl -LO &#8220;http://git-core.googlecode.com/files/git-manpages-1.7.7.4.tar.gz</p>
<p>tar xvfz git-manpages-1.7.7.4.tar.gz</p>
<p>You should now have man1, man5 and man7 directories in $HOME/opt/share/man</p>
<p>The last step is to make sure man finds them (add this to .bashrc):</p>
<p>export MANPATH=$HOME/opt/share/man:$MANPATH</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guest</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235021</link>
		<dc:creator>Guest</dc:creator>
		<pubDate>Wed, 09 Nov 2011 15:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235021</guid>
		<description>You need to compile zlib the same way (configure --prefix=$HOME/opt) and provided zlib&#039;s location to git via
./configure --prefix=$HOME/opt --with-zlib=$HOME/opt</description>
		<content:encoded><![CDATA[<p>You need to compile zlib the same way (configure &#8211;prefix=$HOME/opt) and provided zlib&#8217;s location to git via<br />
./configure &#8211;prefix=$HOME/opt &#8211;with-zlib=$HOME/opt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joe Maller</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235017</link>
		<dc:creator>Joe Maller</dc:creator>
		<pubDate>Sat, 29 Oct 2011 19:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235017</guid>
		<description>Poke around in the configure file, there are options for specifying alternate file locations for the compiler. Take a look at my linked post about installing Subversion. That was really difficult and I ended up specifying alternate locations for several libraries. 

Or you could try compiling Git binaries on a similar machine and then uploading those.</description>
		<content:encoded><![CDATA[<p>Poke around in the configure file, there are options for specifying alternate file locations for the compiler. Take a look at my linked post about installing Subversion. That was really difficult and I ended up specifying alternate locations for several libraries. </p>
<p>Or you could try compiling Git binaries on a similar machine and then uploading those.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235015</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Sat, 29 Oct 2011 07:05:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235015</guid>
		<description>I know this is a fairly old thread, but here goes. I&#039;m connecting to a friend of mine&#039;s box via SSH (no root access and he&#039;s hard to get in touch with to get him to do this for me).  Everything was working great up to the first make command, at which time I get this message:

[grndrgn@rtfm git-1.7.7.1]$ make
    CC daemon.o
In file included from daemon.c:1:
cache.h:19:18: error: zlib.h: No such file or directory
In file included from daemon.c:1:
cache.h:21: error: expected specifier-qualifier-list before âz_streamâ
make: *** [daemon.o] Error 1
[grndrgn@rtfm git-1.7.7.1]$

Any ideas?  One of the lines indicates that it can&#039;t find zlib.h.  So I installed a local user copy of zlib.  However, I can&#039;t figure out how to tell git&#039;s make program where to find it.</description>
		<content:encoded><![CDATA[<p>I know this is a fairly old thread, but here goes. I&#8217;m connecting to a friend of mine&#8217;s box via SSH (no root access and he&#8217;s hard to get in touch with to get him to do this for me).  Everything was working great up to the first make command, at which time I get this message:</p>
<p>[grndrgn@rtfm git-1.7.7.1]$ make<br />
    CC daemon.o<br />
In file included from daemon.c:1:<br />
cache.h:19:18: error: zlib.h: No such file or directory<br />
In file included from daemon.c:1:<br />
cache.h:21: error: expected specifier-qualifier-list before âz_streamâ<br />
make: *** [daemon.o] Error 1<br />
[grndrgn@rtfm git-1.7.7.1]$</p>
<p>Any ideas?  One of the lines indicates that it can&#8217;t find zlib.h.  So I installed a local user copy of zlib.  However, I can&#8217;t figure out how to tell git&#8217;s make program where to find it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jacksmirk</title>
		<link>http://joemaller.com/908/how-to-install-git-on-a-shared-host/#comment-235005</link>
		<dc:creator>Jacksmirk</dc:creator>
		<pubDate>Thu, 20 Oct 2011 18:43:00 +0000</pubDate>
		<guid isPermaLink="false">http://joemaller.com/?p=908#comment-235005</guid>
		<description>I had this problem too. You can install git by installing in your local machine the linux distribution that your server is using (centOS 5.7 in my case) and install there git into a single folder. Then you pack the folder into a tar.gz, upload to your home directory in the server and untar. Finally you have to create the PATH in the .bashrc file.</description>
		<content:encoded><![CDATA[<p>I had this problem too. You can install git by installing in your local machine the linux distribution that your server is using (centOS 5.7 in my case) and install there git into a single folder. Then you pack the folder into a tar.gz, upload to your home directory in the server and untar. Finally you have to create the PATH in the .bashrc file.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 1/6 queries in 0.005 seconds using disk: basic
Object Caching 238/249 objects using disk: basic

Served from: joemaller.com @ 2012-02-09 05:24:11 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          908/how-to-install-git-on-a-shared-host/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.396s
Header info:
Set-Cookie:         bb2_screener_=1328783051+38.107.179.219+38.107.179.219; path=/
X-Pingback:         http://joemaller.com/wordpress/xmlrpc.php
Link:               <http://joemaller.com/?p=908>; rel=shortlink
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Thu, 09 Feb 2012 10:24:11 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Thu, 09 Feb 2012 11:24:11 GMT
Pragma:             public
Cache-Control:      public, must-revalidate, proxy-revalidate
Etag:               ad9792c390274b9df5972e04389be4cf
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
-->
