2005-06-17 20:30:04 +02:00
|
|
|
|
|
|
|
Git installation
|
|
|
|
|
|
|
|
Normally you can just do "make" followed by "make install", and that
|
|
|
|
will install the git programs in your own ~/bin/ directory. If you want
|
|
|
|
to do a global install, you can do
|
|
|
|
|
2007-08-07 12:02:12 +02:00
|
|
|
$ make prefix=/usr all doc info ;# as yourself
|
2008-09-10 10:19:34 +02:00
|
|
|
# make prefix=/usr install install-doc install-html install-info ;# as root
|
2005-06-17 20:30:04 +02:00
|
|
|
|
2005-11-09 21:40:03 +01:00
|
|
|
(or prefix=/usr/local, of course). Just like any program suite
|
|
|
|
that uses $prefix, the built results have some paths encoded,
|
|
|
|
which are derived from $prefix, so "make all; make prefix=/usr
|
|
|
|
install" would not work.
|
2005-06-17 20:30:04 +02:00
|
|
|
|
2006-07-03 01:56:48 +02:00
|
|
|
Alternatively you can use autoconf generated ./configure script to
|
|
|
|
set up install paths (via config.mak.autogen), so you can write instead
|
|
|
|
|
2006-08-08 18:35:23 +02:00
|
|
|
$ make configure ;# as yourself
|
2006-07-03 01:56:48 +02:00
|
|
|
$ ./configure --prefix=/usr ;# as yourself
|
|
|
|
$ make all doc ;# as yourself
|
2008-09-10 10:19:34 +02:00
|
|
|
# make install install-doc install-html;# as root
|
2006-07-03 01:56:48 +02:00
|
|
|
|
|
|
|
|
2005-06-17 20:30:04 +02:00
|
|
|
Issues of note:
|
|
|
|
|
2008-07-07 04:10:00 +02:00
|
|
|
- Ancient versions of GNU Interactive Tools (pre-4.9.2) installed a
|
|
|
|
program "git", whose name conflicts with this program. But with
|
|
|
|
version 4.9.2, after long hiatus without active maintenance (since
|
|
|
|
around 1997), it changed its name to gnuit and the name conflict is no
|
|
|
|
longer a problem.
|
|
|
|
|
2008-08-05 04:11:04 +02:00
|
|
|
NOTE: When compiled with backward compatibility option, the GNU
|
2008-07-07 04:10:00 +02:00
|
|
|
Interactive Tools package still can install "git", but you can build it
|
|
|
|
with --disable-transition option to avoid this.
|
2008-05-04 16:55:11 +02:00
|
|
|
|
2006-07-03 08:54:47 +02:00
|
|
|
- You can use git after building but without installing if you
|
|
|
|
wanted to. Various git commands need to find other git
|
|
|
|
commands and scripts to do their work, so you would need to
|
|
|
|
arrange a few environment variables to tell them that their
|
|
|
|
friends will be found in your built source area instead of at
|
|
|
|
their standard installation area. Something like this works
|
|
|
|
for me:
|
|
|
|
|
|
|
|
GIT_EXEC_PATH=`pwd`
|
|
|
|
PATH=`pwd`:$PATH
|
2006-09-29 09:34:51 +02:00
|
|
|
GITPERLLIB=`pwd`/perl/blib/lib
|
2006-07-03 23:16:32 +02:00
|
|
|
export GIT_EXEC_PATH PATH GITPERLLIB
|
2006-07-03 08:54:47 +02:00
|
|
|
|
2005-06-17 20:30:04 +02:00
|
|
|
- Git is reasonably self-sufficient, but does depend on a few external
|
|
|
|
programs and libraries:
|
|
|
|
|
|
|
|
- "zlib", the compression library. Git won't build without it.
|
|
|
|
|
2007-07-17 08:59:54 +02:00
|
|
|
- "openssl". Unless you specify otherwise, you'll get the SHA1
|
|
|
|
library from here.
|
2005-06-17 20:30:04 +02:00
|
|
|
|
|
|
|
If you don't have openssl, you can use one of the SHA1 libraries
|
|
|
|
that come with git (git includes the one from Mozilla, and has
|
2006-03-01 00:07:20 +01:00
|
|
|
its own PowerPC and ARM optimized ones too - see the Makefile).
|
2005-06-17 20:30:04 +02:00
|
|
|
|
2008-06-15 12:16:01 +02:00
|
|
|
- libcurl library; git-http-fetch and git-fetch use them. You
|
|
|
|
might also want the "curl" executable for debugging purposes.
|
|
|
|
If you do not use http transfer, you are probably OK if you
|
|
|
|
do not have them.
|
2005-06-17 20:30:04 +02:00
|
|
|
|
2005-11-05 20:12:05 +01:00
|
|
|
- expat library; git-http-push uses it for remote lock
|
|
|
|
management over DAV. Similar to "curl" above, this is optional.
|
|
|
|
|
2006-07-09 09:44:30 +02:00
|
|
|
- "wish", the Tcl/Tk windowing shell is used in gitk to show the
|
2007-07-17 08:59:54 +02:00
|
|
|
history graphically, and in git-gui.
|
2005-09-12 02:00:49 +02:00
|
|
|
|
|
|
|
- "ssh" is used to push and pull over the net
|
2005-11-11 20:27:03 +01:00
|
|
|
|
|
|
|
- "perl" and POSIX-compliant shells are needed to use most of
|
2008-08-05 04:11:04 +02:00
|
|
|
the bare-bones Porcelainish scripts.
|
2005-11-11 20:27:03 +01:00
|
|
|
|
|
|
|
- Some platform specific issues are dealt with Makefile rules,
|
|
|
|
but depending on your specific installation, you may not
|
|
|
|
have all the libraries/tools needed, or you may have
|
|
|
|
necessary libraries at unusual locations. Please look at the
|
|
|
|
top of the Makefile to see what can be adjusted for your needs.
|
2005-12-05 19:38:30 +01:00
|
|
|
You can place local settings in config.mak and the Makefile
|
|
|
|
will include them. Note that config.mak is not distributed;
|
|
|
|
the name is reserved for local settings.
|
2006-01-22 00:54:12 +01:00
|
|
|
|
2007-06-18 10:43:34 +02:00
|
|
|
- To build and install documentation suite, you need to have
|
|
|
|
the asciidoc/xmlto toolchain. Because not many people are
|
|
|
|
inclined to install the tools, the default build target
|
2007-08-07 12:02:12 +02:00
|
|
|
("make all") does _not_ build them.
|
|
|
|
|
2008-09-10 10:19:34 +02:00
|
|
|
"make doc" builds documentation in man and html formats; there are
|
|
|
|
also "make man", "make html" and "make info". Note that "make html"
|
|
|
|
requires asciidoc, but not xmlto. "make man" (and thus make doc)
|
|
|
|
requires both.
|
|
|
|
|
|
|
|
"make install-doc" installs documentation in man format only; there
|
|
|
|
are also "make install-man", "make install-html" and "make
|
|
|
|
install-info".
|
|
|
|
|
2007-08-07 12:02:12 +02:00
|
|
|
Building and installing the info file additionally requires
|
|
|
|
makeinfo and docbook2X. Version 0.8.3 is known to work.
|
|
|
|
|
2008-12-10 23:44:50 +01:00
|
|
|
Building and installing the pdf file additionally requires
|
|
|
|
dblatex. Version 0.2.7 with asciidoc >= 8.2.7 is known to work.
|
|
|
|
|
2007-08-07 12:02:12 +02:00
|
|
|
The documentation is written for AsciiDoc 7, but "make
|
|
|
|
ASCIIDOC8=YesPlease doc" will let you format with AsciiDoc 8.
|
2007-06-18 10:43:34 +02:00
|
|
|
|
2008-09-10 10:19:34 +02:00
|
|
|
Alternatively, pre-formatted documentation is available in
|
2007-06-18 10:43:34 +02:00
|
|
|
"html" and "man" branches of the git repository itself. For
|
|
|
|
example, you could:
|
2006-01-22 00:54:12 +01:00
|
|
|
|
|
|
|
$ mkdir manual && cd manual
|
2007-01-12 22:01:46 +01:00
|
|
|
$ git init
|
2006-06-21 08:54:26 +02:00
|
|
|
$ git fetch-pack git://git.kernel.org/pub/scm/git/git.git man html |
|
2006-01-22 00:54:12 +01:00
|
|
|
while read a b
|
|
|
|
do
|
|
|
|
echo $a >.git/$b
|
|
|
|
done
|
|
|
|
$ cp .git/refs/heads/man .git/refs/heads/master
|
|
|
|
$ git checkout
|
|
|
|
|
|
|
|
to checkout the pre-built man pages. Also in this repository:
|
|
|
|
|
|
|
|
$ git checkout html
|
|
|
|
|
|
|
|
would instead give you a copy of what you see at:
|
|
|
|
|
|
|
|
http://www.kernel.org/pub/software/scm/git/docs/
|
2007-08-04 05:19:09 +02:00
|
|
|
|
2008-11-02 18:53:03 +01:00
|
|
|
There are also "make quick-install-doc", "make quick-install-man"
|
|
|
|
and "make quick-install-html" which install preformatted man pages
|
|
|
|
and html documentation.
|
2008-09-09 22:44:17 +02:00
|
|
|
This does not require asciidoc/xmlto, but it only works from within
|
|
|
|
a cloned checkout of git.git with these two extra branches, and will
|
|
|
|
not work for the maintainer for obvious chicken-and-egg reasons.
|
|
|
|
|
2007-08-04 05:19:09 +02:00
|
|
|
It has been reported that docbook-xsl version 1.72 and 1.73 are
|
|
|
|
buggy; 1.72 misformats manual pages for callouts, and 1.73 needs
|
|
|
|
the patch in contrib/patches/docbook-xsl-manpages-charmap.patch
|