Installing Git Manpages on Snow Leopard
When Using Git do you get this frustration:
If so, there is an easy fix
First, note the git version you are using
Then download the appropriate tarball from kernel.org
Then determine your manpath for /usr/local (here it is /usr/local/share/man, yours may be different)
Lastly, untar the files into the man directory
$ git help pull No manual entry for git-pull
$ git --version git version 1.6.4.2
curl -O http://www.kernel.org/pub/software/scm/git/git-manpages-{YOUR VERSION}.tar.bz2$ cat /etc/manpaths /usr/share/man /usr/local/share/man
sudo tar xjv -C /usr/local/share/man -f git-manpages-1.6.4.2.tar.bz2
Now you should get manpages when you issue something like git help merge


Comments (0)
Add a Comment