Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 1 | |
| 2 | Git installation |
| 3 | |
| 4 | Normally you can just do "make" followed by "make install", and that |
| 5 | will install the git programs in your own ~/bin/ directory. If you want |
| 6 | to do a global install, you can do |
| 7 | |
David Kastrup | 98e79f6 | 2007-08-07 12:02:12 +0200 | [diff] [blame] | 8 | $ make prefix=/usr all doc info ;# as yourself |
Michael J Gruber | 414851a | 2008-09-10 10:19:34 +0200 | [diff] [blame] | 9 | # make prefix=/usr install install-doc install-html install-info ;# as root |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 10 | |
Junio C Hamano | c44922a | 2005-11-09 12:40:03 -0800 | [diff] [blame] | 11 | (or prefix=/usr/local, of course). Just like any program suite |
| 12 | that uses $prefix, the built results have some paths encoded, |
| 13 | which are derived from $prefix, so "make all; make prefix=/usr |
| 14 | install" would not work. |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 15 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 16 | The beginning of the Makefile documents many variables that affect the way |
| 17 | git is built. You can override them either from the command line, or in a |
| 18 | config.mak file. |
| 19 | |
Jakub Narebski | 5566771 | 2006-07-03 01:56:48 +0200 | [diff] [blame] | 20 | Alternatively you can use autoconf generated ./configure script to |
| 21 | set up install paths (via config.mak.autogen), so you can write instead |
| 22 | |
Jakub Narebski | 3900145 | 2006-08-08 18:35:23 +0200 | [diff] [blame] | 23 | $ make configure ;# as yourself |
Jakub Narebski | 5566771 | 2006-07-03 01:56:48 +0200 | [diff] [blame] | 24 | $ ./configure --prefix=/usr ;# as yourself |
| 25 | $ make all doc ;# as yourself |
Michael J Gruber | 414851a | 2008-09-10 10:19:34 +0200 | [diff] [blame] | 26 | # make install install-doc install-html;# as root |
Jakub Narebski | 5566771 | 2006-07-03 01:56:48 +0200 | [diff] [blame] | 27 | |
| 28 | |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 29 | Issues of note: |
| 30 | |
Junio C Hamano | a958d8e | 2008-07-06 19:10:00 -0700 | [diff] [blame] | 31 | - Ancient versions of GNU Interactive Tools (pre-4.9.2) installed a |
| 32 | program "git", whose name conflicts with this program. But with |
| 33 | version 4.9.2, after long hiatus without active maintenance (since |
| 34 | around 1997), it changed its name to gnuit and the name conflict is no |
| 35 | longer a problem. |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 36 | |
Abhijit Menon-Sen | 25032cc | 2008-08-05 07:41:04 +0530 | [diff] [blame] | 37 | NOTE: When compiled with backward compatibility option, the GNU |
Junio C Hamano | a958d8e | 2008-07-06 19:10:00 -0700 | [diff] [blame] | 38 | Interactive Tools package still can install "git", but you can build it |
| 39 | with --disable-transition option to avoid this. |
Miklos Vajna | 62a64d1 | 2008-05-04 16:55:11 +0200 | [diff] [blame] | 40 | |
Matthew Ogilvie | 9045801 | 2009-12-02 22:14:07 -0700 | [diff] [blame] | 41 | - You can use git after building but without installing if you want |
| 42 | to test drive it. Simply run git found in bin-wrappers directory |
| 43 | in the build directory, or prepend that directory to your $PATH. |
| 44 | This however is less efficient than running an installed git, as |
| 45 | you always need an extra fork+exec to run any git subcommand. |
| 46 | |
| 47 | It is still possible to use git without installing by setting a few |
| 48 | environment variables, which was the way this was done |
| 49 | traditionally. But using git found in bin-wrappers directory in |
| 50 | the build directory is far simpler. As a historical reference, the |
| 51 | old way went like this: |
Junio C Hamano | 3c767a0 | 2006-07-02 23:54:47 -0700 | [diff] [blame] | 52 | |
| 53 | GIT_EXEC_PATH=`pwd` |
| 54 | PATH=`pwd`:$PATH |
Junio C Hamano | f7661ce | 2006-09-29 00:34:51 -0700 | [diff] [blame] | 55 | GITPERLLIB=`pwd`/perl/blib/lib |
Petr Baudis | 6fcca93 | 2006-07-03 23:16:32 +0200 | [diff] [blame] | 56 | export GIT_EXEC_PATH PATH GITPERLLIB |
Junio C Hamano | 3c767a0 | 2006-07-02 23:54:47 -0700 | [diff] [blame] | 57 | |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 58 | - Git is reasonably self-sufficient, but does depend on a few external |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 59 | programs and libraries. Git can be used without most of them by adding |
| 60 | the approriate "NO_<LIBRARY>=YesPlease" to the make command line or |
| 61 | config.mak file. |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 62 | |
| 63 | - "zlib", the compression library. Git won't build without it. |
| 64 | |
Brian Gernhardt | 26d9443 | 2009-09-08 21:51:00 -0400 | [diff] [blame] | 65 | - "ssh" is used to push and pull over the net. |
| 66 | |
| 67 | - A POSIX-compliant shell is required to run many scripts needed |
| 68 | for everyday use (e.g. "bisect", "pull"). |
| 69 | |
| 70 | - "Perl" is needed to use some of the features (e.g. preparing a |
| 71 | partial commit using "git add -i/-p", interacting with svn |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 72 | repositories with "git svn"). If you can live without these, use |
| 73 | NO_PERL. |
Brian Gernhardt | 26d9443 | 2009-09-08 21:51:00 -0400 | [diff] [blame] | 74 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 75 | - "openssl" library is used by git-imap-send to use IMAP over SSL. |
| 76 | If you don't need it, use NO_OPENSSL. |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 77 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 78 | By default, git uses OpenSSL for SHA1 but it will use it's own |
| 79 | library (inspired by Mozilla's) with either NO_OPENSSL or |
| 80 | BLK_SHA1. Also included is a version optimized for PowerPC |
| 81 | (PPC_SHA1). |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 82 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 83 | - "libcurl" library is used by git-http-fetch and git-fetch. You |
Johan Herland | 1d53f90 | 2008-06-15 12:16:01 +0200 | [diff] [blame] | 84 | might also want the "curl" executable for debugging purposes. |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 85 | If you do not use http:// or https:// repositories, you do not |
| 86 | have to have them (use NO_CURL). |
Linus Torvalds | c538d2d | 2005-06-17 11:30:04 -0700 | [diff] [blame] | 87 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 88 | - "expat" library; git-http-push uses it for remote lock |
| 89 | management over DAV. Similar to "curl" above, this is optional |
| 90 | (with NO_EXPAT). |
Junio C Hamano | 3402f1d | 2005-11-05 11:12:05 -0800 | [diff] [blame] | 91 | |
Brian Gernhardt | 5beb577 | 2009-09-10 16:28:19 -0400 | [diff] [blame] | 92 | - "wish", the Tcl/Tk windowing shell is used in gitk to show the |
| 93 | history graphically, and in git-gui. If you don't want gitk or |
| 94 | git-gui, you can use NO_TCLTK. |
Horst von Brand | 663a5ed | 2005-09-11 20:00:49 -0400 | [diff] [blame] | 95 | |
Junio C Hamano | 3cab359 | 2005-11-11 11:27:03 -0800 | [diff] [blame] | 96 | - Some platform specific issues are dealt with Makefile rules, |
| 97 | but depending on your specific installation, you may not |
| 98 | have all the libraries/tools needed, or you may have |
| 99 | necessary libraries at unusual locations. Please look at the |
| 100 | top of the Makefile to see what can be adjusted for your needs. |
Jason Riedy | cd8c458 | 2005-12-05 10:38:30 -0800 | [diff] [blame] | 101 | You can place local settings in config.mak and the Makefile |
| 102 | will include them. Note that config.mak is not distributed; |
| 103 | the name is reserved for local settings. |
J. Bruce Fields | eff351c | 2006-01-21 18:54:12 -0500 | [diff] [blame] | 104 | |
Junio C Hamano | a90918e | 2007-06-18 01:43:34 -0700 | [diff] [blame] | 105 | - To build and install documentation suite, you need to have |
| 106 | the asciidoc/xmlto toolchain. Because not many people are |
| 107 | inclined to install the tools, the default build target |
David Kastrup | 98e79f6 | 2007-08-07 12:02:12 +0200 | [diff] [blame] | 108 | ("make all") does _not_ build them. |
| 109 | |
Michael J Gruber | 414851a | 2008-09-10 10:19:34 +0200 | [diff] [blame] | 110 | "make doc" builds documentation in man and html formats; there are |
| 111 | also "make man", "make html" and "make info". Note that "make html" |
| 112 | requires asciidoc, but not xmlto. "make man" (and thus make doc) |
| 113 | requires both. |
| 114 | |
| 115 | "make install-doc" installs documentation in man format only; there |
| 116 | are also "make install-man", "make install-html" and "make |
| 117 | install-info". |
| 118 | |
David Kastrup | 98e79f6 | 2007-08-07 12:02:12 +0200 | [diff] [blame] | 119 | Building and installing the info file additionally requires |
| 120 | makeinfo and docbook2X. Version 0.8.3 is known to work. |
| 121 | |
Miklos Vajna | a325a1a | 2008-12-10 23:44:50 +0100 | [diff] [blame] | 122 | Building and installing the pdf file additionally requires |
| 123 | dblatex. Version 0.2.7 with asciidoc >= 8.2.7 is known to work. |
| 124 | |
David Kastrup | 98e79f6 | 2007-08-07 12:02:12 +0200 | [diff] [blame] | 125 | The documentation is written for AsciiDoc 7, but "make |
| 126 | ASCIIDOC8=YesPlease doc" will let you format with AsciiDoc 8. |
Junio C Hamano | a90918e | 2007-06-18 01:43:34 -0700 | [diff] [blame] | 127 | |
Michael J Gruber | 414851a | 2008-09-10 10:19:34 +0200 | [diff] [blame] | 128 | Alternatively, pre-formatted documentation is available in |
Junio C Hamano | a90918e | 2007-06-18 01:43:34 -0700 | [diff] [blame] | 129 | "html" and "man" branches of the git repository itself. For |
| 130 | example, you could: |
J. Bruce Fields | eff351c | 2006-01-21 18:54:12 -0500 | [diff] [blame] | 131 | |
| 132 | $ mkdir manual && cd manual |
Nicolas Pitre | 5c94f87 | 2007-01-12 16:01:46 -0500 | [diff] [blame] | 133 | $ git init |
Junio C Hamano | efc7fa5 | 2006-06-20 23:54:26 -0700 | [diff] [blame] | 134 | $ git fetch-pack git://git.kernel.org/pub/scm/git/git.git man html | |
J. Bruce Fields | eff351c | 2006-01-21 18:54:12 -0500 | [diff] [blame] | 135 | while read a b |
| 136 | do |
| 137 | echo $a >.git/$b |
| 138 | done |
| 139 | $ cp .git/refs/heads/man .git/refs/heads/master |
| 140 | $ git checkout |
| 141 | |
| 142 | to checkout the pre-built man pages. Also in this repository: |
| 143 | |
| 144 | $ git checkout html |
| 145 | |
| 146 | would instead give you a copy of what you see at: |
| 147 | |
| 148 | http://www.kernel.org/pub/software/scm/git/docs/ |
Junio C Hamano | 2ec39ed | 2007-08-03 20:19:09 -0700 | [diff] [blame] | 149 | |
Markus Heidelberg | b1a46b7 | 2008-11-02 18:53:03 +0100 | [diff] [blame] | 150 | There are also "make quick-install-doc", "make quick-install-man" |
| 151 | and "make quick-install-html" which install preformatted man pages |
| 152 | and html documentation. |
Michael J Gruber | 6fe570d | 2008-09-09 22:44:17 +0200 | [diff] [blame] | 153 | This does not require asciidoc/xmlto, but it only works from within |
| 154 | a cloned checkout of git.git with these two extra branches, and will |
| 155 | not work for the maintainer for obvious chicken-and-egg reasons. |
| 156 | |
Junio C Hamano | 2ec39ed | 2007-08-03 20:19:09 -0700 | [diff] [blame] | 157 | It has been reported that docbook-xsl version 1.72 and 1.73 are |
| 158 | buggy; 1.72 misformats manual pages for callouts, and 1.73 needs |
| 159 | the patch in contrib/patches/docbook-xsl-manpages-charmap.patch |
Jon Seymour | 0edf06d | 2010-07-25 13:57:35 +1000 | [diff] [blame] | 160 | |
| 161 | Users attempting to build the documentation on Cygwin may need to ensure |
| 162 | that the /etc/xml/catalog file looks something like this: |
| 163 | |
| 164 | <?xml version="1.0"?> |
| 165 | <!DOCTYPE catalog PUBLIC |
| 166 | "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN" |
| 167 | "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd" |
| 168 | > |
| 169 | <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> |
| 170 | <rewriteURI |
| 171 | uriStartString = "http://docbook.sourceforge.net/release/xsl/current" |
| 172 | rewritePrefix = "/usr/share/sgml/docbook/xsl-stylesheets" |
| 173 | /> |
| 174 | <rewriteURI |
| 175 | uriStartString="http://www.oasis-open.org/docbook/xml/4.5" |
| 176 | rewritePrefix="/usr/share/sgml/docbook/xml-dtd-4.5" |
| 177 | /> |
| 178 | </catalog> |
| 179 | |
| 180 | This can be achieved with the following two xmlcatalog commands: |
| 181 | |
| 182 | xmlcatalog --noout \ |
| 183 | --add rewriteURI \ |
| 184 | http://docbook.sourceforge.net/release/xsl/current \ |
| 185 | /usr/share/sgml/docbook/xsl-stylesheets \ |
| 186 | /etc/xml/catalog |
| 187 | |
| 188 | xmlcatalog --noout \ |
| 189 | --add rewriteURI \ |
| 190 | http://www.oasis-open.org/docbook/xml/4.5/xsl/current \ |
| 191 | /usr/share/sgml/docbook/xml-dtd-4.5 \ |
| 192 | /etc/xml/catalog |