INSTALL 4.6 KB
Newer Older
1 2 3 4 5 6 7

		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

8 9
	$ make prefix=/usr all doc info ;# as yourself
	# make prefix=/usr install install-doc install-info ;# as root
10

J
Junio C Hamano 已提交
11 12 13 14
(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.
15

16 17 18
Alternatively you can use autoconf generated ./configure script to
set up install paths (via config.mak.autogen), so you can write instead

19
	$ make configure ;# as yourself
20 21 22 23 24
	$ ./configure --prefix=/usr ;# as yourself
	$ make all doc ;# as yourself
	# make install install-doc ;# as root


25 26 27 28 29
Issues of note:

 - git normally installs a helper script wrapper called "git", which
   conflicts with a similarly named "GNU interactive tools" program.

30 31 32
   Let's face it, most of us don't have GNU interactive tools, and even
   if we had it, we wouldn't know what it does.  I don't think it has
   been actively developed since 1997, and people have moved over to
33 34
   graphical file managers.

35 36 37
   In addition, as of gnuit-4.9.2, the GNU interactive tools package has
   been renamed. You can compile gnuit with the --disable-transition
   option and then it will not conflict with git.
38

39 40 41 42 43 44 45 46 47 48
 - 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
49
	GITPERLLIB=`pwd`/perl/blib/lib
50
	export GIT_EXEC_PATH PATH GITPERLLIB
51

52 53 54 55 56
 - 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.

J
Junio C Hamano 已提交
57 58
	- "openssl".  Unless you specify otherwise, you'll get the SHA1
	  library from here.
59 60 61

	  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
62
	  its own PowerPC and ARM optimized ones too - see the Makefile).
63

64 65 66 67
	- 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.
68

69 70 71
	- expat library; git-http-push uses it for remote lock
	  management over DAV.  Similar to "curl" above, this is optional.

P
Pavel Roskin 已提交
72
        - "wish", the Tcl/Tk windowing shell is used in gitk to show the
J
Junio C Hamano 已提交
73
          history graphically, and in git-gui.
74 75

	- "ssh" is used to push and pull over the net
76 77 78 79 80 81 82 83 84

	- "perl" and POSIX-compliant shells are needed to use most of
	  the barebone Porcelainish scripts.

 - 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.
85 86 87
   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.
J
J. Bruce Fields 已提交
88

89 90 91
 - 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
92 93 94 95 96 97 98
   ("make all") does _not_ build them.

   Building and installing the info file additionally requires
   makeinfo and docbook2X.  Version 0.8.3 is known to work.

   The documentation is written for AsciiDoc 7, but "make
   ASCIIDOC8=YesPlease doc" will let you format with AsciiDoc 8.
99 100 101 102

   Alternatively, pre-formatted documentation are available in
   "html" and "man" branches of the git repository itself.  For
   example, you could:
J
J. Bruce Fields 已提交
103 104

	$ mkdir manual && cd manual
105
	$ git init
J
Junio C Hamano 已提交
106
	$ git fetch-pack git://git.kernel.org/pub/scm/git/git.git man html |
J
J. Bruce Fields 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120
	  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/
121 122 123 124

   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