From 09852073b638c0f3130665c044595dadf44da817 Mon Sep 17 00:00:00 2001 From: tekkub Date: Mon, 6 Jul 2009 14:30:45 -0600 Subject: Rework index lists --- _posts/2009-05-04-git-html-help.textile | 49 -------------------------- _posts/2009-06-14-mac-git-installation.textile | 44 +++++++++++++++++++++++ _posts/2009-06-15-msysgit-key-setup.textile | 2 +- _posts/2009-06-16-mac-git-installation.textile | 44 ----------------------- _posts/2009-07-04-git-html-help.textile | 49 ++++++++++++++++++++++++++ index.textile | 2 +- 6 files changed, 95 insertions(+), 95 deletions(-) delete mode 100644 _posts/2009-05-04-git-html-help.textile create mode 100644 _posts/2009-06-14-mac-git-installation.textile delete mode 100644 _posts/2009-06-16-mac-git-installation.textile create mode 100644 _posts/2009-07-04-git-html-help.textile diff --git a/_posts/2009-05-04-git-html-help.textile b/_posts/2009-05-04-git-html-help.textile deleted file mode 100644 index 7ccfd9f..0000000 --- a/_posts/2009-05-04-git-html-help.textile +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: guide -title: Git HTML help -subtitle: This guide will help you install the local git HTML help files and set git to use them by default instead of the man pages. -description: How to install the local git HTML help files -categories: setup ---- - -Most git installations will install man files for help, but not the HTML help files (the same files seen on git's "online documentation":http://www.kernel.org/pub/software/scm/git-core/docs/). Installing these help files is a fairly simple process. - -h3. OSX - -The following commands were run on an installation of the "git-osx-installer":http://code.google.com/p/git-osx-installer/. Your documentation path may be different, pay attention to the output of @git help --web commit@ for where your git is set to look for the HTML files. - -
$ git help --web commit
-fatal: '/usr/local/git/share/doc/git-doc': not a documentation directory.
-
-$ git clone git://git.kernel.org/pub/scm/git/git.git
-Initialized empty Git repository in /Users/tekkub/git/.git/
-remote: Counting objects: 101588, done.
-remote: Compressing objects: 100% (27214/27214), done.
-remote: Total 101588 (delta 73797), reused 100304 (delta 72681)
-Receiving objects: 100% (101588/101588), 24.50 MiB | 377 KiB/s, done.
-Resolving deltas: 100% (73797/73797), done.
-Checking out files: 100% (1652/1652), done.
-
-$ cd git
-$ make quick-install-html
-GIT_VERSION = 1.6.3.3.385.g60647
-make -C Documentation quick-install-html
-    GEN doc.dep
-    SUBDIR ../
-make[2]: `GIT-VERSION-FILE' is up to date.
-    SUBDIR ../
-make[2]: `GIT-VERSION-FILE' is up to date.
-'/bin/sh' ./install-doc-quick.sh origin/html /Users/tekkub/share/doc/git-doc
-
-$ cd /usr/local/git/share/
-$ sudo mkdir doc
-$ cd doc/
-$ sudo mv ~/share/doc/git-doc .
-$ git help --web commit
- (web browser launches)
-
-$ git config --global help.format web
- -h3. Windows - -"Msysgit":http://code.google.com/p/msysgit/ installs and sets the HTML help files as the default automatically. You don't need to do anything! 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)_ + +
$ 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
+
+ +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. diff --git a/_posts/2009-06-15-msysgit-key-setup.textile b/_posts/2009-06-15-msysgit-key-setup.textile index b237049..51568f0 100644 --- a/_posts/2009-06-15-msysgit-key-setup.textile +++ b/_posts/2009-06-15-msysgit-key-setup.textile @@ -1,6 +1,6 @@ --- layout: guide -title: Generating SSH keys (msysgit) +title: Generating SSH keys (Windows/msysgit) subtitle: This guide will step you through the process of generating a keypair in msysgit and uploading it to GitHub description: Setting up SSH keys with msysgit on Windows categories: windows setup diff --git a/_posts/2009-06-16-mac-git-installation.textile b/_posts/2009-06-16-mac-git-installation.textile deleted file mode 100644 index 872511a..0000000 --- a/_posts/2009-06-16-mac-git-installation.textile +++ /dev/null @@ -1,44 +0,0 @@ ---- -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)_ - -
$ 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
-
- -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. diff --git a/_posts/2009-07-04-git-html-help.textile b/_posts/2009-07-04-git-html-help.textile new file mode 100644 index 0000000..7ccfd9f --- /dev/null +++ b/_posts/2009-07-04-git-html-help.textile @@ -0,0 +1,49 @@ +--- +layout: guide +title: Git HTML help +subtitle: This guide will help you install the local git HTML help files and set git to use them by default instead of the man pages. +description: How to install the local git HTML help files +categories: setup +--- + +Most git installations will install man files for help, but not the HTML help files (the same files seen on git's "online documentation":http://www.kernel.org/pub/software/scm/git-core/docs/). Installing these help files is a fairly simple process. + +h3. OSX + +The following commands were run on an installation of the "git-osx-installer":http://code.google.com/p/git-osx-installer/. Your documentation path may be different, pay attention to the output of @git help --web commit@ for where your git is set to look for the HTML files. + +
$ git help --web commit
+fatal: '/usr/local/git/share/doc/git-doc': not a documentation directory.
+
+$ git clone git://git.kernel.org/pub/scm/git/git.git
+Initialized empty Git repository in /Users/tekkub/git/.git/
+remote: Counting objects: 101588, done.
+remote: Compressing objects: 100% (27214/27214), done.
+remote: Total 101588 (delta 73797), reused 100304 (delta 72681)
+Receiving objects: 100% (101588/101588), 24.50 MiB | 377 KiB/s, done.
+Resolving deltas: 100% (73797/73797), done.
+Checking out files: 100% (1652/1652), done.
+
+$ cd git
+$ make quick-install-html
+GIT_VERSION = 1.6.3.3.385.g60647
+make -C Documentation quick-install-html
+    GEN doc.dep
+    SUBDIR ../
+make[2]: `GIT-VERSION-FILE' is up to date.
+    SUBDIR ../
+make[2]: `GIT-VERSION-FILE' is up to date.
+'/bin/sh' ./install-doc-quick.sh origin/html /Users/tekkub/share/doc/git-doc
+
+$ cd /usr/local/git/share/
+$ sudo mkdir doc
+$ cd doc/
+$ sudo mv ~/share/doc/git-doc .
+$ git help --web commit
+ (web browser launches)
+
+$ git config --global help.format web
+ +h3. Windows + +"Msysgit":http://code.google.com/p/msysgit/ installs and sets the HTML help files as the default automatically. You don't need to do anything! diff --git a/index.textile b/index.textile index 5c3e1ae..c92126b 100644 --- a/index.textile +++ b/index.textile @@ -20,7 +20,7 @@ p. This site is a work in progress. {% for cat in (page.index_cats) %}

{{ cat | capitalize }}

- {% for post in site.posts %}{% if post.categories contains cat %} + {% for post in site.posts reversed %}{% if post.categories contains cat %} {{ post.title }}

{{ post.description }}

{% endif %}{% endfor %} -- cgit v1.3.1