summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_layouts/default.html8
-rw-r--r--_posts/2009-06-14-mac-git-installation.textile17
-rw-r--r--_posts/2009-06-15-linux-key-setup.textile4
3 files changed, 21 insertions, 8 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 59ab294..6497ff6 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -28,11 +28,9 @@ sidebar_cats:
</head>
<body>
- <div class="myribbon">
- <a href="http://github.com/help/help.github.com">
- <span>Fork me on GitHub</span>
- </a>
- </div>
+ <a href="http://github.com/help/help.github.com">
+ <img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
+ </a>
{% if page.main_category %}
<script type="text/javascript">var main_category = "{{ page.main_category }}"</script>
{% else %}
diff --git a/_posts/2009-06-14-mac-git-installation.textile b/_posts/2009-06-14-mac-git-installation.textile
index 93627f9..7e5317a 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)_
+
+<pre class="terminal">$ brew install git
+==> Downloading http://kernel.org/pub/software/scm/git/git-1.6.5.7.tar.bz2
+######################################################################## 100.0%
+==> ./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%
+/usr/local/Cellar/git/1.6.5.7: 383 files, 16M, built in 74 seconds
+</pre>
+
h2. MacPorts
# Install "MacPorts":http://macports.org/install.php if you haven't already done so.
diff --git a/_posts/2009-06-15-linux-key-setup.textile b/_posts/2009-06-15-linux-key-setup.textile
index 5c081a2..da9fe7f 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
<pre class="terminal">$ 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