Blame SOURCES/gitweb.conf.in

6743a1
# The gitweb config file is a fragment of perl code. You can set variables
6743a1
# using "our $variable = value"; text from "#" character until the end of a
6743a1
# line is ignored. See perlsyn(1) man page for details.
6743a1
#
6743a1
# See /usr/share/doc/gitweb-*/README and /usr/share/doc/gitweb-*/INSTALL for
6743a1
# more details and available configuration variables.
6743a1
6743a1
# Set the path to git projects.  This is an absolute filesystem path which will
6743a1
# be prepended to the project path.
6743a1
#our $projectroot = "@PROJECTROOT@";
6743a1
6743a1
# Set the list of git base URLs used for URL to where fetch project from, i.e.
6743a1
# the full URL is "$git_base_url/$project". By default this is empty
6743a1
#our @git_base_url_list = qw(git://git.example.com
6743a1
#                            ssh://git.example.com@PROJECTROOT@);
6743a1
6743a1
# Enable the 'blame' blob view, showing the last commit that modified
6743a1
# each line in the file. This can be very CPU-intensive. Disabled by default
6743a1
#$feature{'blame'}{'default'} = [1];
6743a1
#
6743a1
# Allow projects to override the default setting via git config file.
6743a1
# Example: gitweb.blame = 0|1;
6743a1
#$feature{'blame'}{'override'} = 1;
6743a1
6743a1
# Disable the 'snapshot' link, providing a compressed archive of any tree. This
6743a1
# can potentially generate high traffic if you have large project. Enabled for
6743a1
# .tar.gz snapshots by default.
6743a1
#
6743a1
# Value is a list of formats defined in %known_snapshot_formats that you wish
6743a1
# to offer.
6743a1
#$feature{'snapshot'}{'default'} = [];
6743a1
#
6743a1
# Allow projects to override the default setting via git config file.
6743a1
# Example: gitweb.snapshot = tbz2,zip; (use "none" to disable)
6743a1
#$feature{'snapshot'}{'override'} = 1;
6743a1
6743a1
# Disable grep search, which will list the files in currently selected tree
6743a1
# containing the given string. This can be potentially CPU-intensive, of
6743a1
# course. Enabled by default.
6743a1
#$feature{'grep'}{'default'} = [0];
6743a1
#
6743a1
# Allow projects to override the default setting via git config file.
6743a1
# Example: gitweb.grep = 0|1;
6743a1
#$feature{'grep'}{'override'} = 1;
6743a1
6743a1
# Disable the pickaxe search, which will list the commits that modified a given
6743a1
# string in a file. This can be practical and quite faster alternative to
6743a1
# 'blame', but still potentially CPU-intensive. Enabled by default.
6743a1
#$feature{'pickaxe'}{'default'} = [0];
6743a1
#
6743a1
# Allow projects to override the default setting via git config file.
6743a1
# Example: gitweb.pickaxe = 0|1;
6743a1
#$feature{'pickaxe'}{'override'} = 1;