docs:mac:builds:git

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
docs:mac:builds:git [2008/08/03 00:25] – external edit 127.0.0.1docs:mac:builds:git [2013/05/19 17:13] (current) billh
Line 1: Line 1:
 ====== git ====== ====== git ======
-  * download source from http://www.kernel.org/pub/software/scm/git/ +  * download source from http://git-scm.com/
-  * also download and extract the manpages package (into the same place) +
-    * FIXME - couldn't get this to install man pages+
   * use [[typical_build_procedure]]   * use [[typical_build_procedure]]
 +  * You can find all the documentation bundled with the Git source code in the **Documentation** subdirectory (the web version corresponds to the latest Git development version).
 +
 +===== installing man pages =====
 +  * the default git build procedure will not build the documentation (man, html, etc...)
 +  * don't bother trying to do it on Mac OS X because the proper files aren't available and it is cumbersome
 +  * instead, install git as listed above, then use git to clone the latest git repo:<code>
 +git clone git://git.kernel.org/pub/scm/git/git.git
 +</code>
 +  * at this point, the original source directory you used to build git is unnecessary
 +  * clone the git-manpages repo<code>
 +git clone git://git.kernel.org/pub/scm/git/git-manpages.git
 +
 +...so your directories should look like this when done:
 +git
 +git-manpages
 +</code>
 +  * git will install man pages to /usr/local/share/man with this, so make sure your ~/.profile has a proper MANPATH configured:<code>
 +MANPATH=/usr/local/man:/usr/local/share/man:/usr/share/man
 +export MANPATH
 +</code>
 +  * cd back into the **git** repository, then run this to install the man pages:<code>
 +sudo make prefix=/usr/local quick-install-man
 +</code>
 +  * you should now have proper man pages; try it with<code>
 +git help status
 +</code>
  • docs/mac/builds/git.1217744747.txt.gz
  • Last modified: 2008/08/05 19:15
  • (external edit)