1[git]
2client = '/usr/local/bin/git' ; Your git executable path
3default_branch = 'master' ; Default branch when HEAD is detached
4repositories[] = '/home/git/repositories/' ; Path to your repositories
5                                           ; If you wish to add more repositories, just add a new line
6
7; WINDOWS USERS
8;client = '"C:\Program Files (x86)\Git\bin\git.exe"' ; Your git executable path
9;repositories[] = 'C:\Path\to\Repos\' ; Path to your repositories
10
11; You can hide repositories from GitList, just copy this for each repository you want to hide or add a regex (including delimiters), eg. hidden[] = '/(.+)\.git/'
12; hidden[] = '/home/git/repositories/BetaTest'
13
14[app]
15debug = false
16cache = true
17theme = "default"
18title = ""
19
20[clone_button]
21; ssh remote
22show_ssh_remote = false ; display remote URL for SSH
23ssh_host = '' ; host to use for cloning via HTTP (default: none => uses gitlist web host)
24ssh_url_subdir = '' ; if cloning via SSH is triggered using special dir (e.g. ssh://example.com/git/repo.git)
25                ; has to end with trailing slash
26ssh_port = '' ; port to use for cloning via SSH (default: 22 => standard ssh port)
27ssh_user = 'git' ; user to use for cloning via SSH
28ssh_user_dynamic = false ; when enabled, ssh_user is set to $_SERVER['PHP_AUTH_USER']
29
30; http remote
31show_http_remote = false ; display remote URL for HTTP
32http_host = '' ; host to use for cloning via HTTP (default: none => uses gitlist web host)
33use_https = true ; generate URL with https://
34http_url_subdir = 'git/' ; if cloning via HTTP is triggered using virtual dir (e.g. https://example.com/git/repo.git)
35                    ; has to end with trailing slash
36http_user = '' ; user to use for cloning via HTTP (default: none)
37http_user_dynamic = false ; when enabled, http_user is set to $_SERVER['PHP_AUTH_USER']
38
39; If you need to specify custom filetypes for certain extensions, do this here
40[filetypes]
41; extension = type
42; dist = xml
43
44; If you need to set file types as binary or not, do this here
45[binary_filetypes]
46; extension = true
47; svh = false
48; map = true
49
50; set the timezone
51[date]
52; timezone = UTC
53; format = 'd/m/Y H:i:s'
54
55; custom avatar service
56[avatar]
57; url = '//gravatar.com/avatar/'
58; query[] = 'd=identicon'
59