From 1234aa88e0c944f677d88f89614527c65a03fc79 Mon Sep 17 00:00:00 2001 From: tekkub Date: Mon, 14 Dec 2009 19:01:32 -0700 Subject: Typos --- _posts/2009-06-15-linux-key-setup.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '_posts') diff --git a/_posts/2009-06-15-linux-key-setup.textile b/_posts/2009-06-15-linux-key-setup.textile index 9e917d2..3449a2a 100644 --- a/_posts/2009-06-15-linux-key-setup.textile +++ b/_posts/2009-06-15-linux-key-setup.textile @@ -16,8 +16,8 @@ Unless this is your first time setting up ssh or git on your computer, you shoul
$ cd ~/.ssh
 $ ls
-config                id_dsa.pub
-id_dsa                known_hosts
+config                id_rsa.pub
+id_rsa                known_hosts
 $ cd ..
 $ mkdir ssh_key_backup
 $ cp .ssh/id_rsa* ssh_key_backup
-- 
cgit v1.3.1


From 783e7e4d54134684427f09392949639bae2677cc Mon Sep 17 00:00:00 2001
From: Kieran Pilkington 
Date: Mon, 21 Dec 2009 14:16:37 +1300
Subject: Adding Homebrew as second choice for Git installation.

---
 _posts/2009-06-14-mac-git-installation.textile | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

(limited to '_posts')

diff --git a/_posts/2009-06-14-mac-git-installation.textile b/_posts/2009-06-14-mac-git-installation.textile
index 93627f9..01ce73b 100644
--- a/_posts/2009-06-14-mac-git-installation.textile
+++ b/_posts/2009-06-14-mac-git-installation.textile
@@ -6,12 +6,27 @@ categories: mac setup
 main_category: setup
 ---
 
-There are a number of methods to install git on OSX.  This guide details the most common methods.
+There are a number of methods to install git on OSX.  This guide details the most common methods, in order of ease of install.
 
 h2. Pre-compiled Installer
 
 Download and run "git-osx-installer":http://code.google.com/p/git-osx-installer/
 
+h2. Homebrew
+
+# Install "Homebrew":http://github.com/mxcl/homebrew if you haven't already done so.
+# Install Git _(You may want to include Subversion support if you want to import SVN repositories. Snow Leopard already contains a copy of SVN)_
+
+
$ brew install git
+==> Downloading http://kernel.org/pub/software/scm/git/git-1.6.5.7.tar.bz2
+######################################################################## 100.0%
+==> ./configure --prefix=/opt/local/Cellar/git/1.6.5.7
+==> make install
+==> Downloading http://kernel.org/pub/software/scm/git/git-manpages-1.6.5.7.tar.bz2
+######################################################################## 100.0%
+/opt/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds
+
+ h2. MacPorts # Install "MacPorts":http://macports.org/install.php if you haven't already done so. -- cgit v1.3.1 From ac99380f29b83e72b0924be631d15a4bee879fe3 Mon Sep 17 00:00:00 2001 From: Kieran Pilkington Date: Mon, 21 Dec 2009 14:19:21 +1300 Subject: /usr/local is the preferred installation path for Homebrew --- _posts/2009-06-14-mac-git-installation.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '_posts') diff --git a/_posts/2009-06-14-mac-git-installation.textile b/_posts/2009-06-14-mac-git-installation.textile index 01ce73b..7e5317a 100644 --- a/_posts/2009-06-14-mac-git-installation.textile +++ b/_posts/2009-06-14-mac-git-installation.textile @@ -20,11 +20,11 @@ h2. Homebrew
$ brew install git
 ==> Downloading http://kernel.org/pub/software/scm/git/git-1.6.5.7.tar.bz2
 ######################################################################## 100.0%
-==> ./configure --prefix=/opt/local/Cellar/git/1.6.5.7
+==> ./configure --prefix=/usr/local/Cellar/git/1.6.5.7
 ==> make install
 ==> Downloading http://kernel.org/pub/software/scm/git/git-manpages-1.6.5.7.tar.bz2
 ######################################################################## 100.0%
-/opt/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds
+/usr/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds
 
h2. MacPorts -- cgit v1.3.1