config: Use -B in diff options.
[hcoop/zz_old/gitweb.git] / gitweb.conf
CommitLineData
f017e51e 1# -*- Perl -*-
2
c5afbdf4 3# path to git projects (<project>.git)
4$projectroot = "/var/cache/git";
5
6# directory to use for temp files
7$git_temp = "/tmp";
8
9# target of the home link on top of all pages
10#$home_link = $my_uri || "/";
11
412db475 12# string of the home link on top of all pages
13$home_link_str = "HCoop";
14
c5afbdf4 15# html text to include at home page
f017e51e 16$home_text = "/var/local/lib/gitweb/indextext.html";
17
18# filename of cached version of front page
19$cached_front_page = "/var/local/lib/gitweb/indexcache.html";
20
21# name of site
22$site_name = "HCoop Git";
c5afbdf4 23
24# file with project list; by default, simply scan the projectroot dir.
25$projects_list = $projectroot;
26
e8aef07e 27# the width (in characters) of the projects list "Description" column
28$projects_list_description_width = 40;
29
f017e51e 30# list of git base URLs used for URL to where fetch project from
31@git_base_url_list = ('git://git.hcoop.net/git',
32 'http://git.hcoop.net/git');
33
c5afbdf4 34# stylesheet to use
35$stylesheet = "/gitweb.css";
36
37# logo to use
38$logo = "/git-logo.png";
39
40# the 'favicon'
41$favicon = "/git-favicon.png";
412db475 42
43# features
44$feature{'snapshot'}{'default'} = ['tgz','zip'];
ca68bc61 45
46# rename detection options for git-diff and git-diff-tree
47@diff_opts = ('-B', '-M');