]> git.ipfire.org Git - thirdparty/git.git/blame - gitweb/README
Merge branch 'maint'
[thirdparty/git.git] / gitweb / README
CommitLineData
0a8f4f00 1GIT web Interface
128eead1 2=================
0a8f4f00
JH
3
4The one working on:
eae7a759 5 http://git.kernel.org/
0a8f4f00 6
175fb6c0 7From the git version 1.4.0 gitweb is bundled with git.
0a8f4f00 8
5d043a3d 9
128eead1
MW
10How to configure gitweb for your local system
11---------------------------------------------
5d043a3d 12
eae7a759 13See also the "Build time configuration" section in the INSTALL
61fd2552
JN
14file for gitweb (in gitweb/INSTALL).
15
5d043a3d 16You can specify the following configuration variables when building GIT:
61fd2552 17 * GIT_BINDIR
eae7a759
RGS
18 Points where to find the git executable. You should set it up to
19 the place where the git binary was installed (usually /usr/bin) if you
61fd2552 20 don't install git from sources together with gitweb. [Default: $(bindir)]
5d043a3d 21 * GITWEB_SITENAME
61fd2552
JN
22 Shown in the title of all generated pages, defaults to the server name
23 (SERVER_NAME CGI environment variable) if not set. [No default]
5d043a3d 24 * GITWEB_PROJECTROOT
61fd2552
JN
25 The root directory for all projects shown by gitweb. Must be set
26 correctly for gitweb to find repositories to display. See also
eae7a759 27 "Gitweb repositories" in the INSTALL file for gitweb. [Default: /pub/git]
61fd2552 28 * GITWEB_PROJECT_MAXDEPTH
eae7a759 29 The filesystem traversing limit for getting the project list; the number
61fd2552
JN
30 is taken as depth relative to the projectroot. It is used when
31 GITWEB_LIST is a directory (or is not set; then project root is used).
32 Is is meant to speed up project listing on large work trees by limiting
eae7a759 33 search depth. [Default: 2007]
5d043a3d 34 * GITWEB_LIST
61fd2552
JN
35 Points to a directory to scan for projects (defaults to project root
36 if not set / if empty) or to a file with explicit listing of projects
37 (together with projects' ownership). See "Generating projects list
38 using gitweb" in INSTALL file for gitweb to find out how to generate
39 such file from scan of a directory. [No default, which means use root
40 directory for projects]
41 * GITWEB_EXPORT_OK
42 Show repository only if this file exists (in repository). Only
43 effective if this variable evaluates to true. [No default / Not set]
44 * GITWEB_STRICT_EXPORT
45 Only allow viewing of repositories also shown on the overview page.
46 This for example makes GITWEB_EXPORT_OK to decide if repository is
47 available and not only if it is shown. If GITWEB_LIST points to
48 file with list of project, only those repositories listed would be
49 available for gitweb. [No default]
5d043a3d 50 * GITWEB_HOMETEXT
61fd2552
JN
51 Points to an .html file which is included on the gitweb project
52 overview page ('projects_list' view), if it exists. Relative to
53 gitweb.cgi script. [Default: indextext.html]
54 * GITWEB_SITE_HEADER
55 Filename of html text to include at top of each page. Relative to
56 gitweb.cgi script. [No default]
57 * GITWEB_SITE_FOOTER
58 Filename of html text to include at bottom of each page. Relative to
59 gitweb.cgi script. [No default]
60 * GITWEB_HOME_LINK_STR
61 String of the home link on top of all pages, leading to $home_link
62 (usually main gitweb page, which means projects list). Used as first
63 part of gitweb view "breadcrumb trail": <home> / <project> / <view>.
64 [Default: projects]
65 * GITWEB_SITENAME
66 Name of your site or organization to appear in page titles. Set it
67 to something descriptive for clearer bookmarks etc. If not set
68 (if empty) gitweb uses "$SERVER_NAME Git", or "Untitled Git" if
69 SERVER_NAME CGI environment variable is not set (e.g. if running
70 gitweb as standalone script). [No default]
71 * GITWEB_BASE_URL
72 Git base URLs used for URL to where fetch project from, i.e. full
73 URL is "$git_base_url/$project". Shown on projects summary page.
74 Repository URL for project can be also configured per repository; this
eae7a759 75 takes precedence over URLs composed from base URL and a project name.
61fd2552 76 Note that you can setup multiple base URLs (for example one for
eae7a759
RGS
77 git:// protocol access, another for http:// access) from the gitweb
78 config file. [No default]
5d043a3d 79 * GITWEB_CSS
61fd2552 80 Points to the location where you put gitweb.css on your web server
eae7a759
RGS
81 (or to be more generic, the URI of gitweb stylesheet). Relative to the
82 base URI of gitweb. Note that you can setup multiple stylesheets from
83 the gitweb config file. [Default: gitweb.css]
281f2f6b 84 * GITWEB_LOGO
61fd2552
JN
85 Points to the location where you put git-logo.png on your web server
86 (or to be more generic URI of logo, 72x27 size, displayed in top right
87 corner of each gitweb page, and used as logo for Atom feed). Relative
88 to base URI of gitweb. [Default: git-logo.png]
89 * GITWEB_FAVICON
90 Points to the location where you put git-favicon.png on your web server
91 (or to be more generic URI of favicon, assumed to be image/png type;
92 web browsers that support favicons (website icons) may display them
93 in the browser's URL bar and next to site name in bookmarks). Relative
94 to base URI of gitweb. [Default: git-favicon.png]
bb55f77f 95 * GITWEB_CONFIG
61fd2552
JN
96 This Perl file will be loaded using 'do' and can be used to override any
97 of the options above as well as some other options -- see the "Runtime
98 gitweb configuration" section below, and top of 'gitweb.cgi' for their
99 full list and description. If the environment variable GITWEB_CONFIG
100 is set when gitweb.cgi is executed, then the file specified in the
101 environment variable will be loaded instead of the file specified
102 when gitweb.cgi was created. [Default: gitweb_config.perl]
17a8b250
GP
103 * GITWEB_CONFIG_SYSTEM
104 This Perl file will be loaded using 'do' as a fallback if GITWEB_CONFIG
105 does not exist. If the environment variable GITWEB_CONFIG_SYSTEM is set
106 when gitweb.cgi is executed, then the file specified in the environment
107 variable will be loaded instead of the file specified when gitweb.cgi was
108 created. [Default: /etc/gitweb.conf]
5d043a3d 109
128eead1 110
45a3b12c
PB
111Runtime gitweb configuration
112----------------------------
113
114You can adjust gitweb behaviour using the file specified in `GITWEB_CONFIG`
17a8b250
GP
115(defaults to 'gitweb_config.perl' in the same directory as the CGI), and
116as a fallback `GITWEB_CONFIG_SYSTEM` (defaults to /etc/gitweb.conf).
45a3b12c 117The most notable thing that is not configurable at compile time are the
61fd2552
JN
118optional features, stored in the '%features' variable.
119
120Ultimate description on how to reconfigure the default features setting
121in your `GITWEB_CONFIG` or per-project in `project.git/config` can be found
122as comments inside 'gitweb.cgi'.
123
eae7a759
RGS
124See also the "Gitweb config file" (with an example of config file), and
125the "Gitweb repositories" sections in INSTALL file for gitweb.
61fd2552
JN
126
127
eae7a759 128The gitweb config file is a fragment of perl code. You can set variables
61fd2552
JN
129using "our $variable = value"; text from "#" character until the end
130of a line is ignored. See perlsyn(1) man page for details.
131
eae7a759 132Below is the list of variables which you might want to set in gitweb config.
61fd2552
JN
133See the top of 'gitweb.cgi' for the full list of variables and their
134descriptions.
135
136Gitweb config file variables
137~~~~~~~~~~~~~~~~~~~~~~~~~~~~
138
d661146a
JN
139You can set, among others, the following variables in gitweb config files
140(with the exception of $projectroot and $projects_list this list does
141not include variables usually directly set during build):
61fd2552 142 * $GIT
eae7a759 143 Core git executable to use. By default set to "$GIT_BINDIR/git", which
61fd2552
JN
144 in turn is by default set to "$(bindir)/git". If you use git from binary
145 package, set this to "/usr/bin/git". This can just be "git" if your
146 webserver has a sensible PATH. If you have multiple git versions
d661146a 147 installed it can be used to choose which one to use.
61fd2552
JN
148 * $version
149 Gitweb version, set automatically when creating gitweb.cgi from
150 gitweb.perl. You might want to modify it if you are running modified
151 gitweb.
d661146a
JN
152 * $projectroot
153 Absolute filesystem path which will be prepended to project path;
154 the path to repository is $projectroot/$project. Set to
155 $GITWEB_PROJECTROOT during installation. This variable have to be
156 set correctly for gitweb to find repositories.
157 * $projects_list
158 Source of projects list, either directory to scan, or text file
e67c9e39
JN
159 with list of repositories (in the "<URI-encoded repository path> SP
160 <URI-encoded repository owner>" line format; actually there can be
161 any sequence of whitespace in place of space (SP)). Set to
162 $GITWEB_LIST during installation. If empty, $projectroot is used
163 to scan for repositories.
61fd2552 164 * $my_url, $my_uri
e80f97e2
JN
165 Full URL and absolute URL of gitweb script;
166 in earlier versions of gitweb you might have need to set those
167 variables, now there should be no need to do it.
46068383
JN
168 * $base_url
169 Base URL for relative URLs in pages generated by gitweb,
170 (e.g. $logo, $favicon, @stylesheets if they are relative URLs),
171 needed and used only for URLs with nonempty PATH_INFO via
172 <base href="$base_url>. Usually gitweb sets its value correctly,
173 and there is no need to set this variable, e.g. to $my_uri or "/".
61fd2552
JN
174 * $home_link
175 Target of the home link on top of all pages (the first part of view
e80f97e2 176 "breadcrumbs"). By default set to absolute URI of a page ($my_uri).
61fd2552
JN
177 * @stylesheets
178 List of URIs of stylesheets (relative to base URI of a page). You
179 might specify more than one stylesheet, for example use gitweb.css
180 as base, with site specific modifications in separate stylesheet
181 to make it easier to upgrade gitweb. You can add 'site' stylesheet
182 for example by using
183 push @stylesheets, "gitweb-site.css";
eae7a759 184 in the gitweb config file.
61fd2552
JN
185 * $logo_url, $logo_label
186 URI and label (title) of GIT logo link (or your site logo, if you choose
187 to use different logo image). By default they point to git homepage;
188 in the past they pointed to git documentation at www.kernel.org.
189 * $projects_list_description_width
190 The width (in characters) of the projects list "Description" column.
191 Longer descriptions will be cut (trying to cut at word boundary);
192 full description is available as 'title' attribute (usually shown on
193 mouseover). By default set to 25, which might be too small if you
194 use long project descriptions.
195 * @git_base_url_list
196 List of git base URLs used for URL to where fetch project from, shown
197 in project summary page. Full URL is "$git_base_url/$project".
198 You can setup multiple base URLs (for example one for git:// protocol
199 access, and one for http:// "dumb" protocol access). Note that per
200 repository configuration in 'cloneurl' file, or as values of gitweb.url
201 project config.
202 * $default_blob_plain_mimetype
203 Default mimetype for blob_plain (raw) view, if mimetype checking
204 doesn't result in some other type; by default 'text/plain'.
205 * $default_text_plain_charset
eae7a759 206 Default charset for text files. If not set, web server configuration
61fd2552
JN
207 would be used.
208 * $mimetypes_file
209 File to use for (filename extension based) guessing of MIME types before
eae7a759
RGS
210 trying /etc/mime.types. Path, if relative, is taken currently as
211 relative to the current git repository.
61fd2552
JN
212 * $fallback_encoding
213 Gitweb assumes this charset if line contains non-UTF-8 characters.
214 Fallback decoding is used without error checking, so it can be even
680ebc01 215 'utf-8'. Value must be valid encoding; see Encoding::Supported(3pm) man
61fd2552
JN
216 page for a list. By default 'latin1', aka. 'iso-8859-1'.
217 * @diff_opts
218 Rename detection options for git-diff and git-diff-tree. By default
219 ('-M'); set it to ('-C') or ('-C', '-C') to also detect copies, or
220 set it to () if you don't want to have renames detection.
7e1100e9
MM
221 * $prevent_xss
222 If true, some gitweb features are disabled to prevent content in
223 repositories from launching cross-site scripting (XSS) attacks. Set this
224 to true if you don't trust the content of your repositories. The default
225 is false.
61fd2552 226
e67c9e39
JN
227
228Projects list file format
229~~~~~~~~~~~~~~~~~~~~~~~~~
230
231Instead of having gitweb find repositories by scanning filesystem starting
232from $projectroot (or $projects_list, if it points to directory), you can
233provide list of projects by setting $projects_list to a text file with list
234of projects (and some additional info). This file uses the following
235format:
236
237One record (for project / repository) per line, whitespace separated fields;
238does not support (at least for now) lines continuation (newline escaping).
239Leading and trailing whitespace are ignored, any run of whitespace can be
240used as field separator (rules for Perl's "split(' ', $line)"). Keyed by
241the first field, which is project name, i.e. path to repository GIT_DIR
242relative to $projectroot. Fields use modified URI encoding, defined in
243RFC 3986, section 2.1 (Percent-Encoding), or rather "Query string encoding"
244(see http://en.wikipedia.org/wiki/Query_string#URL_encoding), the difference
245being that SP (' ') can be encoded as '+' (and therefore '+' has to be also
246percent-encoded). Reserved characters are: '%' (used for encoding), '+'
247(can be used to encode SPACE), all whitespace characters as defined in Perl,
248including SP, TAB and LF, (used to separate fields in a record).
249
250Currently list of fields is
251 * <repository path> - path to repository GIT_DIR, relative to $projectroot
252 * <repository owner> - displayed as repository owner, preferably full name,
253 or email, or both
254
255You can additionally use $projects_list file to limit which repositories
256are visible, and together with $strict_export to limit access to
257repositories (see "Gitweb repositories" section in gitweb/INSTALL).
258
259
61fd2552
JN
260Per-repository gitweb configuration
261~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
262
263You can also configure individual repositories shown in gitweb by creating
264file in the GIT_DIR of git repository, or by setting some repo configuration
265variable (in GIT_DIR/config).
266
267You can use the following files in repository:
268 * README.html
269 A .html file (HTML fragment) which is included on the gitweb project
270 summary page inside <div> block element. You can use it for longer
e67c9e39 271 description of a project, to provide links (for example to project's
7e1100e9
MM
272 homepage), etc. This is recognized only if XSS prevention is off
273 ($prevent_xss is false); a way to include a readme safely when XSS
274 prevention is on may be worked out in the future.
61fd2552
JN
275 * description (or gitweb.description)
276 Short (shortened by default to 25 characters in the projects list page)
277 single line description of a project (of a repository). Plain text file;
278 HTML will be escaped. By default set to
279 Unnamed repository; edit this file to name it for gitweb.
eae7a759 280 from the template during repository creation. You can use the
61fd2552 281 gitweb.description repo configuration variable, but the file takes
eae7a759 282 precedence.
61fd2552
JN
283 * cloneurl (or multiple-valued gitweb.url)
284 File with repository URL (used for clone and fetch), one per line.
285 Displayed in the project summary page. You can use multiple-valued
286 gitweb.url repository configuration variable for that, but the file
eae7a759 287 takes precedence.
b59012ef
BR
288 * gitweb.owner
289 You can use the gitweb.owner repository configuration variable to set
290 repository's owner. It is displayed in the project list and summary
ef115e26
JN
291 page. If it's not set, filesystem directory's owner is used
292 (via GECOS field / real name field from getpwiud(3)).
61fd2552
JN
293 * various gitweb.* config variables (in config)
294 Read description of %feature hash for detailed list, and some
295 descriptions.
45a3b12c
PB
296
297
128eead1
MW
298Webserver configuration
299-----------------------
300
301If you want to have one URL for both gitweb and your http://
302repositories, you can configure apache like this:
303
55f409a8
ABH
304<VirtualHost *:80>
305 ServerName git.example.org
128eead1 306 DocumentRoot /pub/git
604cb211 307 SetEnv GITWEB_CONFIG /etc/gitweb.conf
55f409a8
ABH
308 RewriteEngine on
309 # make the front page an internal rewrite to the gitweb script
310 RewriteRule ^/$ /cgi-bin/gitweb.cgi
311 # make access for "dumb clients" work
312 RewriteRule ^/(.*\.git/(?!/?(HEAD|info|objects|refs)).*)?$ /cgi-bin/gitweb.cgi%{REQUEST_URI} [L,PT]
128eead1
MW
313</VirtualHost>
314
315The above configuration expects your public repositories to live under
316/pub/git and will serve them as http://git.domain.org/dir-under-pub-git,
317both as cloneable GIT URL and as browseable gitweb interface.
318If you then start your git-daemon with --base-path=/pub/git --export-all
319then you can even use the git:// URL with exactly the same path.
320
604cb211
AC
321Setting the environment variable GITWEB_CONFIG will tell gitweb to use
322the named file (i.e. in this example /etc/gitweb.conf) as a
323configuration for gitweb. Perl variables defined in here will
324override the defaults given at the head of the gitweb.perl (or
325gitweb.cgi). Look at the comments in that file for information on
326which variables and what they mean.
128eead1 327
55f409a8
ABH
328If you use the rewrite rules from the example you'll likely also need
329something like the following in your gitweb.conf (or gitweb_config.perl) file:
330
331 @stylesheets = ("/some/absolute/path/gitweb.css");
332 $my_uri = "/";
333 $home_link = "/";
334
128eead1 335
0dbf027a
GB
336PATH_INFO usage
337-----------------------
338If you enable PATH_INFO usage in gitweb by putting
339
340 $feature{'pathinfo'}{'default'} = [1];
341
342in your gitweb.conf, it is possible to set up your server so that it
343consumes and produces URLs in the form
344
345http://git.example.com/project.git/shortlog/sometag
346
347by using a configuration such as the following, that assumes that
348/var/www/gitweb is the DocumentRoot of your webserver, and that it
349contains the gitweb.cgi script and complementary static files
350(stylesheet, favicon):
351
352<VirtualHost *:80>
353 ServerAlias git.example.com
354
355 DocumentRoot /var/www/gitweb
356
357 <Directory /var/www/gitweb>
358 Options ExecCGI
359 AddHandler cgi-script cgi
360
361 DirectoryIndex gitweb.cgi
362
363 RewriteEngine On
364 RewriteCond %{REQUEST_FILENAME} !-f
365 RewriteCond %{REQUEST_FILENAME} !-d
366 RewriteRule ^.* /gitweb.cgi/$0 [L,PT]
367 </Directory>
368</VirtualHost>
369
370The rewrite rule guarantees that existing static files will be properly
371served, whereas any other URL will be passed to gitweb as PATH_INFO
372parameter.
373
374Notice that in this case you don't need special settings for
375@stylesheets, $my_uri and $home_link, but you lose "dumb client" access
376to your project .git dirs. A possible workaround for the latter is the
377following: in your project root dir (e.g. /pub/git) have the projects
378named without a .git extension (e.g. /pub/git/project instead of
379/pub/git/project.git) and configure Apache as follows:
380
381<VirtualHost *:80>
382 ServerAlias git.example.com
383
384 DocumentRoot /var/www/gitweb
385
1bed73c6 386 AliasMatch ^(/.*?)(\.git)(/.*)?$ /pub/git$1$3
0dbf027a
GB
387 <Directory /var/www/gitweb>
388 Options ExecCGI
389 AddHandler cgi-script cgi
390
391 DirectoryIndex gitweb.cgi
392
393 RewriteEngine On
394 RewriteCond %{REQUEST_FILENAME} !-f
395 RewriteCond %{REQUEST_FILENAME} !-d
396 RewriteRule ^.* /gitweb.cgi/$0 [L,PT]
397 </Directory>
398</VirtualHost>
399
400The additional AliasMatch makes it so that
401
402http://git.example.com/project.git
403
404will give raw access to the project's git dir (so that the project can
405be cloned), while
406
407http://git.example.com/project
408
409will provide human-friendly gitweb access.
410
1bed73c6
GB
411This solution is not 100% bulletproof, in the sense that if some project
412has a named ref (branch, tag) starting with 'git/', then paths such as
413
414http://git.example.com/project/command/abranch..git/abranch
415
416will fail with a 404 error.
417
418
0dbf027a 419
ee0d3234 420Originally written by:
0a8f4f00 421 Kay Sievers <kay.sievers@vrfy.org>
ee0d3234
JH
422
423Any comment/question/concern to:
424 Git mailing list <git@vger.kernel.org>