<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>subtleGradient comments on Simple Install of Git on Leopard</title>
    <link>http://subtlegradient.com/</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>subtleGradient comments</description>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Thomas Aylott</title>
      <description>&lt;p&gt;@Kenneth : It&amp;#8217;s easier to update just that line than to replace every instance of the version number in the whole script. It may be dumb, but it works ;)&lt;/p&gt;</description>
      <pubDate>Tue, 27 May 2008 12:42:05 PDT</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-1053</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-1053</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Kenneth</title>
      <description>&lt;p&gt;The whole  GIT _VERSION_TO_GET thing is stupid. Other than than, good guide. Thanks for writing it.&lt;/p&gt;</description>
      <pubDate>Mon,  5 May 2008 12:54:35 PDT</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-672</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-672</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Thorsten</title>
      <description>&lt;p&gt;Thanks for sharing, that makes setting up my co-workers much easier!&lt;/p&gt;</description>
      <pubDate>Mon,  5 May 2008 01:17:11 PDT</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-670</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-670</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by KNK</title>
      <description>&lt;p&gt;Wow, awesome thank you for post this seriously! Also great looking blog :) .&lt;/p&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:42:11 PDT</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-471</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-471</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Joseph</title>
      <description>&lt;p&gt;What about uninstalling?&lt;/p&gt;</description>
      <pubDate>Tue, 11 Mar 2008 16:05:59 PDT</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-470</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-470</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Soryu</title>
      <description>&lt;p&gt;Thanks Thomas&lt;/p&gt;</description>
      <pubDate>Sun, 24 Feb 2008 15:41:22 PST</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-469</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-469</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard": comment by Chris Bailey</title>
      <description>&lt;p&gt;Thanks for this!&lt;/p&gt;</description>
      <pubDate>Sun, 24 Feb 2008 10:21:12 PST</pubDate>
      <guid>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-468</guid>
      <link>http://subtlegradient.com/articles/2008/02/21/install_git_leopard#comment-468</link>
    </item>
    <item>
      <title>"Simple Install of Git on Leopard" by admin</title>
      <description>&lt;h3&gt;Here's how to install Git on Mac OS X Leopard&lt;/h3&gt;

&lt;pre&gt;
mkdir -p ~/Downloads/src
cd ~/Downloads/src

# Set options since we don't have GNU gettext installed
export TCL_PATH=`which tclsh`
export NO_MSGFMT=1
export GIT_VERSION='1.5.6.4'

# Get and install git
curl -O "http://kernel.org/pub/software/scm/git/git-$GIT_VERSION.tar.bz2"
tar xjvf "git-$GIT_VERSION.tar.bz2"
cd "git-$GIT_VERSION/"

# When on Mac OS X
./configure
make
sudo make install

cd ..

# Install Man Pages
curl -O "http://kernel.org/pub/software/scm/git/git-manpages-$GIT_VERSION.tar.bz2"
sudo tar xjv -C /usr/local/share/man        -f "git-manpages-$GIT_VERSION.tar.bz2"
&lt;/pre&gt;

&lt;h3&gt;Only needs some minor modifications to work on Dreamhost&lt;/h3&gt;

&lt;pre&gt;
mkdir -p "$HOME/src"
cd "$HOME/src"

# Set options even though we have GNU gettext installed
export TCL_PATH=`which tclsh`
export NO_MSGFMT=1
export GIT_VERSION='1.5.6.4'

# Get and Install Git
curl -O "http://kernel.org/pub/software/scm/git/git-$GIT_VERSION.tar.bz2"
tar xjvf "git-$GIT_VERSION.tar.bz2"
cd "git-$GIT_VERSION/"

# When on Dreamhost:
./configure --prefix="$HOME" NO_CURL=1 NO_MMAP=1
make
make install

cd ..

# Don't Bother Installing the Man Pages
&lt;/pre&gt;

&lt;h3&gt;After installing, you'll want to configure it&lt;/h3&gt;

&lt;pre&gt;
# Use Apple opendiff (FileMerge) for resolving conflicts (Mac OS X only)
git config --global merge.tool opendiff

# Ignore Carp
git config --global core.excludesfile ~/.gitignore
touch               "$HOME/.gitignore"
echo '.DS_Store' &gt;&gt; "$HOME/.gitignore"
echo '._*'       &gt;&gt; "$HOME/.gitignore"
echo '.svn'      &gt;&gt; "$HOME/.gitignore"
echo '.hg'       &gt;&gt; "$HOME/.gitignore"

# Shortcuts
git config --global alias.st status
git config --global alias.ci commit
git config --global alias.co checkout
git config --global alias.br branch

# Colors? YES!
git config --global color.ui auto

# Personal Setup
git config --global user.name "Your Name"
git config --global user.email your_email@your-domain.com
&lt;/pre&gt;

&lt;br /&gt;&lt;del&gt;UPDATE: Now updated to 1.5.4.5&lt;/del&gt;
&lt;br /&gt;&lt;del&gt;UPDATE: Now updated to 1.5.5 &lt;em&gt;with Dreamhost support&lt;/em&gt;&lt;/del&gt;
&lt;br /&gt;&lt;ins&gt;UPDATE: Now updated to 1.5.6.4&lt;/ins&gt;


</description>
      <pubDate>Thu, 21 Feb 2008 14:47:00 PST</pubDate>
      <guid>&lt;a href="/articles/2008/02/21/install_git_leopard"&gt;Simple Install of Git on Leopard&lt;/a&gt;</guid>
      <link>&lt;a href="/articles/2008/02/21/install_git_leopard"&gt;Simple Install of Git on Leopard&lt;/a&gt;</link>
    </item>
  </channel>
</rss>
