<?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>eXpand yOur cReativity &#187; tiger</title>
	<atom:link href="http://blog.bhushangahire.net/tag/tiger/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bhushangahire.net</link>
	<description></description>
	<lastBuildDate>Thu, 05 Jan 2012 07:17:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Install Git on MAC Tiger (10.4.11)</title>
		<link>http://blog.bhushangahire.net/2009/04/14/install-git-on-mac-tiger-10411/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=install-git-on-mac-tiger-10411</link>
		<comments>http://blog.bhushangahire.net/2009/04/14/install-git-on-mac-tiger-10411/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 05:11:56 +0000</pubDate>
		<dc:creator>Bhushan Ahire</dc:creator>
				<category><![CDATA[git]]></category>
		<category><![CDATA[MAC Tiger]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[tiger]]></category>

		<guid isPermaLink="false">http://blog.bhushangahire.net/?p=94</guid>
		<description><![CDATA[I downloaded and compiled the latest Git version, 1.6.2.3 like so: curl -O http://kernel.org/pub/software/scm/git/git-1.6.2.3.tar.gz tar jxvf git-1.6.2.3.tar.gz cd git-1.6.2.3 make prefix=/usr/local all make prefix=/usr/local test &#38;&#38; echo $? sudo make prefix=/usr/local install When the compile was done, it gave me output like this: !! You have installed git-* commands to new gitexecdir. !! Old version [...]]]></description>
			<content:encoded><![CDATA[<div class="content">
<p>I downloaded and compiled the latest Git version, 1.6.2.3 like so:</p>
<div class="typocode">
<pre><code class="typocode_shell ">curl -O http://kernel.org/pub/software/scm/git/git-1.6.2.3.tar.gz
tar jxvf git-1.6.2.3.tar.gz
cd git-1.6.2.3
make prefix=/usr/local all
make prefix=/usr/local test &amp;&amp; echo $?
sudo make prefix=/usr/local install</code></pre>
</div>
<p>When the compile was done, it gave me output like this:</p>
<div class="typocode">
<pre><code class="typocode_shell ">!! You have installed git-* commands to new gitexecdir.
!! Old version git-* commands still remain in bindir.
!! Mixing two versions of Git will lead to problems.
!! Please remove old version commands in bindir now.</code></pre>
</div>
<p>I simply did:</p>
<div class="typocode">
<pre><code class="typocode_shell ">cd /usr/local/bin/
ls -latr | grep git</code></pre>
</div>
<p>Which gave me an ordered list of all the git binaries installed. The ones at the end all had today’s date on them, so I knew those were the new versions. The rest I could whack. The ones I could keep were <code>git-upload-pack</code>, <code>git-upload-archive</code>, <code>git-receive-pack</code>, <code>git</code>, <code>git-shell</code>, <code>git-cvsserver</code>, and <code>gitk</code>. The rest I removed like so:</p>
<div class="typocode">
<pre><code class="typocode_shell ">sudo rm git-var git-update-server-info git-unpack-file git-ssh-upload git-ssh-push git-ssh-pull git-ssh-fetch git-show-index git-send-pack git-peek-remote git-patch-id git-pack-redundant git-mktree git-mktag git-merge-tree git-merge-recursive git-merge-index git-local-fetch git-index-pack git-imap-send git-http-push git-http-fetch git-hash-object git-fetch-pack git-fast-import git-daemon git-convert-objects git-bisect git-write-tree git-whatchanged git-verify-tag git-verify-pack git-update-ref git-update-index git-unpack-objects git-tar-tree git-tag git-symbolic-ref git-svnimport git-svn git-submodule git-stripspace git-status git-stash git-show-ref git-show-branch git-show git-shortlog git-sh-setup git-send-email git-runstatus git-rm git-revert git-rev-parse git-rev-list git-reset git-rerere git-request-pull git-repo-config git-repack git-remote git-relink git-reflog git-rebase--interactive git-rebase git-read-tree git-quiltimport git-push git-pull git-prune-packed git-prune git-parse-remote git-pack-refs git-pack-objects git-name-rev git-mv git-mergetool git-merge-subtree git-merge-stupid git-merge-resolve git-merge-ours git-merge-one-file git-merge-octopus git-merge-file git-merge-base git-merge git-mailsplit git-mailinfo git-ls-tree git-ls-remote git-ls-files git-lost-found git-log git-instaweb git-init-db git-init git-gui git-grep git-get-tar-commit-id git-gc git-fsck-objects git-fsck git-format-patch git-for-each-ref git-fmt-merge-msg git-filter-branch git-fetch--tool git-fetch git-diff-tree git-diff-index git-diff-files git-diff git-describe git-cvsimport git-cvsexportcommit git-count-objects git-config git-commit-tree git-commit git-clone git-clean git-citool git-cherry-pick git-cherry git-checkout-index git-checkout git-check-ref-format git-check-attr git-cat-file git-bundle git-branch git-blame git-archive git-archimport git-apply git-annotate git-am git-add--interactive git-add gitjour</code></pre>
</div>
<p>Then I just had to go back and install the manpages for the new version like so:</p>
<div class="typocode">
<pre><code class="typocode_shell ">curl -O http://kernel.org/pub/software/scm/git/git-manpages-1.6.2.3.tar.bz2
sudo tar xjv -C /usr/local/man -f git-manpages-1.6.2.3.tar.bz2</code></pre>
</div>
<p>And, low and behold, I was now running git 1.6.2.3! </p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.bhushangahire.net/2009/04/14/install-git-on-mac-tiger-10411/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

