]> git.ipfire.org Git - thirdparty/git.git/blame - INSTALL
Merge branch 'jk/clone-allow-bare-and-o-together'
[thirdparty/git.git] / INSTALL
CommitLineData
c538d2d3
LT
1
2 Git installation
3
4Normally you can just do "make" followed by "make install", and that
5will install the git programs in your own ~/bin/ directory. If you want
6to do a global install, you can do
7
98e79f63 8 $ make prefix=/usr all doc info ;# as yourself
414851a4 9 # make prefix=/usr install install-doc install-html install-info ;# as root
c538d2d3 10
c44922a7
JH
11(or prefix=/usr/local, of course). Just like any program suite
12that uses $prefix, the built results have some paths encoded,
13which are derived from $prefix, so "make all; make prefix=/usr
14install" would not work.
c538d2d3 15
5beb577d
BG
16The beginning of the Makefile documents many variables that affect the way
17git is built. You can override them either from the command line, or in a
18config.mak file.
19
55667714
JN
20Alternatively you can use autoconf generated ./configure script to
21set up install paths (via config.mak.autogen), so you can write instead
22
3900145e 23 $ make configure ;# as yourself
55667714
JN
24 $ ./configure --prefix=/usr ;# as yourself
25 $ make all doc ;# as yourself
414851a4 26 # make install install-doc install-html;# as root
55667714 27
39001007
AK
28If you're willing to trade off (much) longer build time for a later
29faster git you can also do a profile feedback build with
30
066dd263 31 $ make prefix=/usr profile
f2d713fc 32 # make prefix=/usr PROFILE=BUILD install
39001007
AK
33
34This will run the complete test suite as training workload and then
35rebuild git with the generated profile feedback. This results in a git
36which is a few percent faster on CPU intensive workloads. This
37may be a good tradeoff for distribution packagers.
38
066dd263
AK
39Alternatively you can run profile feedback only with the git benchmark
40suite. This runs significantly faster than the full test suite, but
41has less coverage:
42
43 $ make prefix=/usr profile-fast
44 # make prefix=/usr PROFILE=BUILD install
45
f2d713fc
TT
46Or if you just want to install a profile-optimized version of git into
47your home directory, you could run:
48
066dd263
AK
49 $ make profile-install
50
51or
52 $ make profile-fast-install
f2d713fc
TT
53
54As a caveat: a profile-optimized build takes a *lot* longer since the
55git tree must be built twice, and in order for the profiling
56measurements to work properly, ccache must be disabled and the test
57suite has to be run using only a single CPU. In addition, the profile
58feedback build stage currently generates a lot of additional compiler
59warnings.
55667714 60
c538d2d3
LT
61Issues of note:
62
a958d8ed
JH
63 - Ancient versions of GNU Interactive Tools (pre-4.9.2) installed a
64 program "git", whose name conflicts with this program. But with
65 version 4.9.2, after long hiatus without active maintenance (since
66 around 1997), it changed its name to gnuit and the name conflict is no
67 longer a problem.
68
25032ccd 69 NOTE: When compiled with backward compatibility option, the GNU
a958d8ed
JH
70 Interactive Tools package still can install "git", but you can build it
71 with --disable-transition option to avoid this.
62a64d1a 72
90458012
MO
73 - You can use git after building but without installing if you want
74 to test drive it. Simply run git found in bin-wrappers directory
75 in the build directory, or prepend that directory to your $PATH.
76 This however is less efficient than running an installed git, as
77 you always need an extra fork+exec to run any git subcommand.
78
79 It is still possible to use git without installing by setting a few
80 environment variables, which was the way this was done
81 traditionally. But using git found in bin-wrappers directory in
82 the build directory is far simpler. As a historical reference, the
83 old way went like this:
3c767a08
JH
84
85 GIT_EXEC_PATH=`pwd`
86 PATH=`pwd`:$PATH
20d2a30f 87 GITPERLLIB=`pwd`/perl/build/lib
6fcca938 88 export GIT_EXEC_PATH PATH GITPERLLIB
3c767a08 89
20d2a30f 90 - By default (unless NO_PERL is provided) Git will ship various perl
1aca69c0
ÆAB
91 scripts. However, for simplicity it doesn't use the
92 ExtUtils::MakeMaker toolchain to decide where to place the perl
93 libraries. Depending on the system this can result in the perl
20d2a30f
ÆAB
94 libraries not being where you'd like them if they're expected to be
95 used by things other than Git itself.
96
97 Manually supplying a perllibdir prefix should fix this, if this is
98 a problem you care about, e.g.:
99
100 prefix=/usr perllibdir=/usr/$(/usr/bin/perl -MConfig -wle 'print substr $Config{installsitelib}, 1 + length $Config{siteprefixexp}')
101
102 Will result in e.g. perllibdir=/usr/share/perl/5.26.1 on Debian,
103 perllibdir=/usr/share/perl5 (which we'd use by default) on CentOS.
104
1aca69c0
ÆAB
105 - Unless NO_PERL is provided Git will ship various perl libraries it
106 needs. Distributors of Git will usually want to set
107 NO_PERL_CPAN_FALLBACKS if NO_PERL is not provided to use their own
108 copies of the CPAN modules Git needs.
109
c538d2d3 110 - Git is reasonably self-sufficient, but does depend on a few external
5beb577d 111 programs and libraries. Git can be used without most of them by adding
89152979 112 the appropriate "NO_<LIBRARY>=YesPlease" to the make command line or
5beb577d 113 config.mak file.
c538d2d3
LT
114
115 - "zlib", the compression library. Git won't build without it.
116
26d94439
BG
117 - "ssh" is used to push and pull over the net.
118
932757b0
AR
119 - A POSIX-compliant shell is required to run some scripts needed
120 for everyday use (e.g. "bisect", "request-pull").
26d94439 121
d48b2841
ÆAB
122 - "Perl" version 5.8 or later is needed to use some of the
123 features (e.g. preparing a partial commit using "git add -i/-p",
124 interacting with svn repositories with "git svn"). If you can
634a5f26
JH
125 live without these, use NO_PERL. Note that recent releases of
126 Redhat/Fedora are reported to ship Perl binary package with some
127 core modules stripped away (see http://lwn.net/Articles/477234/),
128 so you might need to install additional packages other than Perl
14f437f3
TZ
129 itself, e.g. Digest::MD5, File::Spec, File::Temp, Net::Domain,
130 Net::SMTP, and Time::HiRes.
26d94439 131
1e16b255
BR
132 - git-imap-send needs the OpenSSL library to talk IMAP over SSL if
133 you are using libcurl older than 7.34.0. Otherwise you can use
134 NO_OPENSSL without losing git-imap-send.
c538d2d3 135
3a51467b 136 By default, git uses OpenSSL for SHA1 but it will use its own
5beb577d 137 library (inspired by Mozilla's) with either NO_OPENSSL or
9dc523aa 138 BLK_SHA1.
c538d2d3 139
e54e5020
ÆAB
140 - "libcurl" library is used for fetching and pushing
141 repositories over http:// or https://, as well as by
142 git-imap-send if the curl version is >= 7.34.0. If you do
143 not need that functionality, use NO_CURL to build without
144 it.
c538d2d3 145
59a399ed
ÆAB
146 Git requires version "7.19.4" or later of "libcurl" to build
147 without NO_CURL. This version requirement may be bumped in
148 the future.
149
5beb577d
BG
150 - "expat" library; git-http-push uses it for remote lock
151 management over DAV. Similar to "curl" above, this is optional
152 (with NO_EXPAT).
3402f1d6 153
5beb577d
BG
154 - "wish", the Tcl/Tk windowing shell is used in gitk to show the
155 history graphically, and in git-gui. If you don't want gitk or
156 git-gui, you can use NO_TCLTK.
663a5ed5 157
5e9637c6
ÆAB
158 - A gettext library is used by default for localizing Git. The
159 primary target is GNU libintl, but the Solaris gettext
160 implementation also works.
161
162 We need a gettext.h on the system for C code, gettext.sh (or
163 Solaris gettext(1)) for shell scripts, and libintl-perl for Perl
164 programs.
165
166 Set NO_GETTEXT to disable localization support and make Git only
167 use English. Under autoconf the configure script will do this
168 automatically if it can't find libintl on the system.
169
fcedbc1c 170 - Python version 2.7 or later is needed to use the git-p4 interface
2e4f04fa 171 to Perforce.
b6f93057 172
3cab3594
JH
173 - Some platform specific issues are dealt with Makefile rules,
174 but depending on your specific installation, you may not
175 have all the libraries/tools needed, or you may have
176 necessary libraries at unusual locations. Please look at the
177 top of the Makefile to see what can be adjusted for your needs.
cd8c4589
JR
178 You can place local settings in config.mak and the Makefile
179 will include them. Note that config.mak is not distributed;
180 the name is reserved for local settings.
eff351c9 181
a90918e8
JH
182 - To build and install documentation suite, you need to have
183 the asciidoc/xmlto toolchain. Because not many people are
184 inclined to install the tools, the default build target
98e79f63
DK
185 ("make all") does _not_ build them.
186
414851a4
MG
187 "make doc" builds documentation in man and html formats; there are
188 also "make man", "make html" and "make info". Note that "make html"
189 requires asciidoc, but not xmlto. "make man" (and thus make doc)
190 requires both.
191
192 "make install-doc" installs documentation in man format only; there
193 are also "make install-man", "make install-html" and "make
194 install-info".
195
98e79f63
DK
196 Building and installing the info file additionally requires
197 makeinfo and docbook2X. Version 0.8.3 is known to work.
198
a325a1a7 199 Building and installing the pdf file additionally requires
b2478aa0 200 dblatex. Version >= 0.2.7 is known to work.
a325a1a7 201
6534d436
BS
202 All formats require at least asciidoc 8.4.1. Alternatively, you can
203 use Asciidoctor (requires Ruby) by passing USE_ASCIIDOCTOR=YesPlease
204 to make. You need at least Asciidoctor version 1.5.
a90918e8 205
b1a46b70
MH
206 There are also "make quick-install-doc", "make quick-install-man"
207 and "make quick-install-html" which install preformatted man pages
fcbebfdd
JH
208 and html documentation. To use these build targets, you need to
209 clone two separate git-htmldocs and git-manpages repositories next
210 to the clone of git itself.
6fe570de 211
5a80d85b 212 The minimum supported version of docbook-xsl is 1.74.
0edf06dc
JS
213
214 Users attempting to build the documentation on Cygwin may need to ensure
215 that the /etc/xml/catalog file looks something like this:
216
217 <?xml version="1.0"?>
218 <!DOCTYPE catalog PUBLIC
219 "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
220 "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd"
221 >
222 <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
223 <rewriteURI
224 uriStartString = "http://docbook.sourceforge.net/release/xsl/current"
225 rewritePrefix = "/usr/share/sgml/docbook/xsl-stylesheets"
226 />
227 <rewriteURI
228 uriStartString="http://www.oasis-open.org/docbook/xml/4.5"
229 rewritePrefix="/usr/share/sgml/docbook/xml-dtd-4.5"
230 />
231 </catalog>
232
233 This can be achieved with the following two xmlcatalog commands:
234
235 xmlcatalog --noout \
236 --add rewriteURI \
237 http://docbook.sourceforge.net/release/xsl/current \
238 /usr/share/sgml/docbook/xsl-stylesheets \
239 /etc/xml/catalog
240
241 xmlcatalog --noout \
242 --add rewriteURI \
243 http://www.oasis-open.org/docbook/xml/4.5/xsl/current \
244 /usr/share/sgml/docbook/xml-dtd-4.5 \
245 /etc/xml/catalog