Go to content Go to navigation Go to search
el-Studio.com
Tickling both halves of the Flounder
About
Work
Archive
156 days ago

Building Git on Leopard

Comment [2] share: post this at del.icio.uspost this at Diggpost this at Technoratipost this at Newsvinepost this at Redditpost this at Yahoo! my webpost this at StumbleUpon
tags: , ,

Tiger thinks of swimming,

So you want to use Git for distributed version control. For Mac OS X 10.5 there are a couple of options for installing Git.

  • Fink packages an almost up-to-date version, named simply git
  • MacPorts packages an up-to-date version as git-core

Either of these methods, though, installs lots of dependencies. Which requires lots of compile time. And lots of disk space — especially for the MacPorts version.

So I prefer to compile Git myself — and use Fink for dependencies. Here’s how I do it.

» Read more


156 days ago

Building Git on Centos 5

Comment share: post this at del.icio.uspost this at Diggpost this at Technoratipost this at Newsvinepost this at Redditpost this at Yahoo! my webpost this at StumbleUpon
tags: , ,

So you want to use Git the latest hotness in distributed version control. It builds easily using the instructions in the INSTALL file.

But on Centos 5 (or Red Hat Enterprise Linux 5) there are some dependencies to install first:

sudo apt-get install gettext-devel expat-devel curl-devel zlib-devel openssl-devel

From here the instructions in Git’s INSTALL file work just fine…

» Read more