mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
17 lines
418 B
Perl
17 lines
418 B
Perl
#
|
|
|
|
our $G = '/opt/packrat/playpen/public/in-place/git';
|
|
$GIT = '/home/junio/bin/Linux/git';
|
|
$projectroot = $G;
|
|
$site_name = 'Gitster Local';
|
|
$stylesheet = '/gitweb.css';
|
|
$logo = '/git-logo.png';
|
|
$favicon = '/git-favicon.png';
|
|
$projects_list = "$G/index/index.aux";
|
|
|
|
while (my ($k, $v) = each %feature) {
|
|
$feature{$k}{'override'} = 1;
|
|
}
|
|
$feature{'pathinfo'}{'override'} = 0;
|
|
$feature{'pathinfo'}{'default'} = [1];
|
|
1;
|