summaryrefslogtreecommitdiff
path: root/_posts/2009-07-04-git-html-help.markdown
diff options
context:
space:
mode:
authorCameron McEfee <cameron@github.com>2011-05-27 16:25:16 -0700
committerCameron McEfee <cameron@github.com>2011-05-27 16:26:19 -0700
commit75e24fdca4e70e751332c491a4b60a712e12c9e0 (patch)
treece505c13238ac1243de1026f85f26f848cd16d26 /_posts/2009-07-04-git-html-help.markdown
parent379694ab364801b5d06c2070c43fa50594c4bf65 (diff)
Reorder files to alphabetize. Update titles to be more conducive to quick scans.
The posts have been re-dated to not only alphabetize them within their categories, but also to make them easier to find with their directory. Files marked 2008 are active post files. Files marked 2009 are outdated or are redirects to newer files. Files have been renamed to match their title for easier updating.
Diffstat (limited to '_posts/2009-07-04-git-html-help.markdown')
-rw-r--r--_posts/2009-07-04-git-html-help.markdown40
1 files changed, 0 insertions, 40 deletions
diff --git a/_posts/2009-07-04-git-html-help.markdown b/_posts/2009-07-04-git-html-help.markdown
deleted file mode 100644
index 6c268b0..0000000
--- a/_posts/2009-07-04-git-html-help.markdown
+++ /dev/null
@@ -1,40 +0,0 @@
----
-layout: default
-title: Installing Git HTML help
-description: How to install the local git HTML help files
-categories: intermediate
----
-
-<p class="intro">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.</p>
-
-<p class="intro">Most git installations will install man files for help, but not the HTML help files (the same files seen on git's <a href="http://www.kernel.org/pub/software/scm/git-core/docs/">online documentation</a>). Installing these help files is a fairly simple process.</p>
-
-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!
-
-OSX
----
-
-To install web docs we simply need to clone the main git repo to the correct path and check out the "html" branch. 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.
-
-<pre class="terminal">
-$ git help --web commit
-fatal: '/usr/local/git/share/doc/git-doc': not a documentation directory.
-
-$ sudo mkdir -p /usr/local/git/share/doc
-$ cd /usr/local/git/share/doc
-$ sudo git clone git://git.kernel.org/pub/scm/git/git.git git-doc --branch html
-</pre>
-
-To verify that the web docs now work, run `git help --web commit`. If your browser launches then you're good to go. You can now set git to default to the web docs by running `git config --global help.format web`
-
-### Updating the docs
-
-Updating is a simple matter of pulling:
-
-<pre class="terminal">
-$ cd /usr/local/git/share/doc
-$ sudo git pull
-</pre>