summaryrefslogtreecommitdiff
path: root/_posts/2009-06-14-mac-git-installation.textile
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2009-07-06 14:30:45 -0600
committertekkub <tekkub@gmail.com>2009-07-06 14:30:45 -0600
commit09852073b638c0f3130665c044595dadf44da817 (patch)
tree727088f1c11f921cfe140e02bd845d498569f2e1 /_posts/2009-06-14-mac-git-installation.textile
parentd64bd8c2c3c6ba462780f734568f5963ce56332d (diff)
Rework index lists
Diffstat (limited to '_posts/2009-06-14-mac-git-installation.textile')
-rw-r--r--_posts/2009-06-14-mac-git-installation.textile44
1 files changed, 44 insertions, 0 deletions
diff --git a/_posts/2009-06-14-mac-git-installation.textile b/_posts/2009-06-14-mac-git-installation.textile
new file mode 100644
index 0000000..872511a
--- /dev/null
+++ b/_posts/2009-06-14-mac-git-installation.textile
@@ -0,0 +1,44 @@
+---
+layout: guide
+title: Installing git (OSX)
+subtitle: There are a number of methods to install git on OSX. This guide details the most common methods.
+description: How to install git on OSX
+categories: mac setup
+---
+
+h3. Pre-compiled Installer
+
+Download and run "git-osx-installer":http://code.google.com/p/git-osx-installer/
+
+h3. MacPorts
+
+# Install "MacPorts":http://macports.org/install.php if you haven't already done so.
+# Make sure your ports are up to date.
+# Install Git _(You may want to include Subversion support if you want to import SVN repositories)_
+
+<pre>$ sudo port selfupdate
+
+MacPorts base version 1.600 installed
+Downloaded MacPorts base version 1.600
+
+The MacPorts installation is not outdated and so was not updated
+selfupdate done!
+
+$ sudo port install git-core +svn
+---> Installing curl 7.18.2_0
+---> Activating curl 7.18.2_0
+---> Installing openssh 5.0p1_0+darwin_9
+---> Activating openssh 5.0p1_0+darwin_9
+---> Installing p5-error 0.17012_0
+---> Activating p5-error 0.17012_0
+---> Installing popt 1.13_0
+---> Activating popt 1.13_0
+---> Installing rsync 3.0.2_0
+---> Activating rsync 3.0.2_0
+---> Installing git-core 1.5.5.3_0+doc
+---> Activating git-core 1.5.5.3_0+doc
+</pre>
+
+h3. Compiling git manually
+
+See "compiling and installing git on mac os x":http://github.com/guides/compiling-and-installing-git-on-mac-os-x.